You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sites/en/intro-to-rails/getting_started.step
+4-8
Original file line number
Diff line number
Diff line change
@@ -25,28 +25,24 @@ steps do
25
25
step do
26
26
message "Check to see if you have any existing suggestotron apps from a previous workshop."
27
27
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:"
29
31
console "rm -rf suggestotron"
30
32
end
31
33
32
34
step do
33
35
console "rails new suggestotron"
34
36
message "`rails new` creates a new Rails project with the name you give."
35
37
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."
36
39
end
37
40
38
41
step do
39
42
console "cd suggestotron"
40
-
message "'cd' stands for change directory."
41
43
message "`cd suggestotron` makes suggestotron our current directory."
42
44
end
43
45
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
-
50
46
step do
51
47
message <<-MARKDOWN
52
48
Open the suggestotron folder as a project in your text editor.
0 commit comments