Skip to content

Commit 4c125d8

Browse files
committed
Replace Sublime references and screenshots with Atom in Intro to Rails
1 parent 160a417 commit 4c125d8

7 files changed

+6
-6
lines changed

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)