Skip to content

Commit 5990d65

Browse files
committed
Change Sublime references to Atom in Job Board
1 parent 4c125d8 commit 5990d65

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

sites/en/job-board/add_a_new_job_form.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ RUBY
7878

7979
message "Now we should see our mostly unstyled form!"
8080

81-
discussion_box "Form HTML", "What HTML did the form helpers produce? Using the web inspector, look through the form code and compare it to the file you've been working on in Sublime."
81+
discussion_box "Form HTML", "What HTML did the form helpers produce? Using the web inspector, look through the form code and compare it to the file you've been working on in Atom."
8282

8383
next_step "make_the_form_work"

sites/en/job-board/create_a_rails_app.step

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ message <<-MARKDOWN
2727

2828
Watch all the files that are created! Wow!
2929

30-
# Open the project in Sublime Text
30+
# Open the project in Atom
3131
MARKDOWN
3232

3333
console_with_message "Move into the directory for your new Rails app:", "cd job_board"
3434

3535
message <<-MARKDOWN
36-
And open the project in Sublime:
36+
And open the project in Atom:
3737

38-
* Open Sublime
38+
* Open Atom
3939
* Under Project, choose "Add Folder to Project"
4040

4141
(You must have at least one window open, so if that option is greyed out, open a window with cmd+n (Mac) or ctl+n (PC))

sites/en/job-board/make_a_jobs_home_page.step

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ message <<-MARKDOWN
2121

2222
So it's looking for a route, but can't find one. Let's add one!
2323

24-
Open up the routes file. It's in the config directory, called `routes.rb`. If you're using Sublime Text 2, you can open it using keyboard shortcuts:
24+
Open up the routes file. It's in the config directory, called `routes.rb`. If you're using Atom, you can open it using keyboard shortcuts:
2525

2626
* Hitting cmd + p (on Mac) or ctl + p (on PC)
2727
* typing in `route`
2828
* hitting enter
2929

30-
Magic! (Sublime is using fuzzy search, so you can use the entire file path, or just part of the filename to go to files.)
30+
Magic! (Atom is using fuzzy search, so you can use the entire file path, or just part of the filename to go to files.)
3131
MARKDOWN
3232

3333
source_code_with_message "We're going to need a resource route, which will create EIGHT different routes for us. Add this to line two:", :ruby, "resources :jobs"

0 commit comments

Comments
 (0)