Skip to content

Commit f067a67

Browse files
committed
Merge branch 'mh-getting-started-rearranging' of https://github.com/mxhold/docs into mxhold-mh-getting-started-rearranging
Conflicts: sites/en/intro-to-rails/getting_started.step
2 parents ae95a36 + ad4e784 commit f067a67

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

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

+4-8
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,24 @@ steps do
2525
step do
2626
message "Check to see if you have any existing suggestotron apps from a previous workshop."
2727
console "ls"
28-
message "That command will list the files in your railsbridge directory. If you have any old suggestotron apps in that list, you can remove them to prevent hiccups:"
28+
message "`ls` stands for **l**i**s**t."
29+
message "It lists the contents of the current directory."
30+
message "If you have any old suggestotron apps in that list, you can remove them to prevent hiccups:"
2931
console "rm -rf suggestotron"
3032
end
3133

3234
step do
3335
console "rails new suggestotron"
3436
message "`rails new` creates a new Rails project with the name you give."
3537
message "In this case we told it to create a new project called `suggestotron`. We'll go into detail on what it created shortly."
38+
message "This will print a lot of stuff to the screen and can take a while to finish."
3639
end
3740

3841
step do
3942
console "cd suggestotron"
40-
message "'cd' stands for change directory."
4143
message "`cd suggestotron` makes suggestotron our current directory."
4244
end
4345

44-
step do
45-
console "ls"
46-
message "'ls' stands for 'list (stuff)'."
47-
message "It shows you the contents of the current folder."
48-
end
49-
5046
step do
5147
message <<-MARKDOWN
5248
Open the suggestotron folder as a project in your text editor.

0 commit comments

Comments
 (0)