Skip to content

Commit 320df1b

Browse files
committed
Merge branch 'sublime-to-atom' of https://github.com/camillevilla/docs
2 parents 248ff53 + 1ea9d89 commit 320df1b

19 files changed

+23
-28
lines changed

sites/en/frontend/frontend.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ We're going to be working with:
3030
* [Chrome](https://www.google.com/chrome)
3131
(If you're experienced with the developer tools in another browser, that may work too.);
3232
* The code editor of your choice.
33-
* [Sublime Text](http://www.sublimetext.com/) is popular with many Ruby and Rails users. You can use it free for evaluation, then must pay to continue using it.
3433
* [Atom](https://atom.io/) is a free, open-source editor that can be customized with HTML, CSS, and JavaScript. A download is available for OS X 10.8+, Windows 7/8, and Ubuntu/RedHat linux.
34+
* [or install a different editor](/installfest/editors)
3535

3636
Optional tools if you're deploying to GitHub:
3737

sites/en/frontend/get_a_sticker.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ end
1010

1111
verify "you can open a local webpage in a browser" do
1212
message <<-MESSAGE
13-
Create a new file called `sticker.html` by opening it in Sublime Text 2 or your preferred editor.
13+
Create a new file called `sticker.html` by opening it in Atom or your preferred editor.
1414
Make a note of where you save it, you'll need to know in a second.
1515

1616
Fill it with the following contents:

sites/en/frontend/tool_installation.step

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,9 @@ steps do
4646
end
4747

4848
step "Install a text editor" do
49-
a "Download and install Sublime Text 2", :href => "http://www.sublimetext.com/2"
50-
message "Install Sublime Text 2 by double clicking the file you downloaded, then dragging the Sublime Text 2 icon into the Applications folder. Finish up by clicking the eject icon for Sublime Text 2 in your finder window."
49+
a "Download and install Atom", :href => "https://atom.io/"
50+
message "Install Atom by double clicking the file you downloaded, then dragging the Atom icon into the Applications folder. Finish up by clicking the eject icon for Atom in your finder window."
5151
a "or install a different editor", :href => "/installfest/editors"
52-
message "FYI: Sublime Text 2 is a paid program that you can download and try out for free. If you keep using Sublime Text 2 after the workshop, you'll need to buy a license. There are other editors available you can find on [our editors page](/installfest/editors)."
5352
end
5453
end
5554
end

sites/en/intro-to-rails/_deploying_to_heroku.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ step "Edit the Gemfile" do
88

99
message "Heroku will run our application slightly differently than our development computer does, which requires us to make a small change to our `Gemfile`."
1010

11-
message "Open the file called `Gemfile` in Sublime Text, or your preferred editor, and find the line containing:"
11+
message "Open the file called `Gemfile` in Atom, or your preferred editor, and find the line containing:"
1212

1313
source_code :ruby, <<-RUBY
1414
gem 'sqlite3'

sites/en/intro-to-rails/getting_started.step

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ Open the suggestotron folder as a project in your text editor.
6060
tip "Close any files that are already open. They might be from yesterday's `test_app`, and we want to make sure that we're editing files in today's `suggestotron` app."
6161

6262
message <<-MARKDOWN
63-
In **Sublime Text 2**, you can use the `Project > Add Folder to Project...` menu option:
63+
In **Atom**, you can use the `Project > Add Project Folder...` menu option:
6464

65-
![Sublime Text Project menu screenshot](img/sublime_add_folder_to_project.png)
65+
![Atom Project menu screenshot](img/atom_add_folder_to_project.png)
6666

67-
Select your `suggestotron` folder from the file picker that opens. If everything works out Sublime should show the directories of your app in a tree structure on the left:
67+
Select your `suggestotron` folder from the file picker that opens. If everything works out Atom should show the directories of your app in a tree structure on the left:
6868

69-
![Screenshot of Suggestotron project folder tree in Sublime Text](img/sublime_project_as_folder.png)
69+
![Screenshot of Suggestotron project folder tree in Atom](img/atom_project_as_folder.png)
7070
MARKDOWN
7171
end
7272

38.2 KB
Loading
15.8 KB
Loading
Binary file not shown.
Binary file not shown.

sites/en/intro-to-rails/setting_the_default_page.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ goals {
1414
steps {
1515

1616
step "Add a root route" do
17-
message "Open the file `config/routes.rb` in an editor (In the InstallFest yesterday, we suggested that you install and use **Sublime Text** as your editor)."
17+
message "Open the file `config/routes.rb` in an editor (In the InstallFest yesterday, we suggested that you install and use **Atom** as your editor)."
1818

1919
message "Look for the line `Rails.application.routes.draw` at the beginning of the file, and add the line `root 'topics#index'` after it. When you are done the start of the file should look like this:"
2020

0 commit comments

Comments
 (0)