Skip to content

Commit 308b941

Browse files
committed
post-rebase clean-up
1 parent 295df38 commit 308b941

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed

sites/installfest/clean_up.step

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ Ok, there is one more step. You won't be using the test applications in the work
44
MARKDOWN
55

66
step "Delete the apps from Heroku" do
7-
message "Go to <https://heroku.com/myapps>, login if needed, and then click on your (lyrical) app name. Scroll to the bottom of the page and click Destroy App. Confirm, and then repeat for the second app."
7+
message "Go to <https://heroku.com/myapps>, login if needed, and then click on your first (lyrical) app name. Scroll to the bottom of the page and click Destroy App. Confirm, and then repeat for the second app."
88
end
99

10-
step "Delete the apps from your computer" do
10+
step "Delete the test_app from your computer" do
1111
option "Windows" do
1212
message "From the Explorer, right click on the test_app folder (inside C:\\Sites) and choose Delete."
1313
end
@@ -17,9 +17,9 @@ step "Delete the apps from your computer" do
1717
option "Linux" do
1818
console "rm -rf ~/test_app"
1919
end
20-
21-
option "All" do
20+
end
21+
step "Delete the sticker app from your computer" do
2222
message "Do the same for the sticker folder."
23-
end
23+
message "Now you're really done!"
2424
end
2525

sites/installfest/create_and_deploy_a_rails_app.step

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ message "In Windows, you may need to let Ruby and Rails communicate through your
7070
step "Generate a database model" do
7171

7272
option "if your prompt doesn't already show that you are (still) in the test_app folder" do
73-
cd test_app
73+
console "cd test_app"
7474
end
7575

7676
console <<-BASH
@@ -90,7 +90,7 @@ end
9090
step "Use git" do
9191

9292
option "if your prompt doesn't already show that you are (still) in the test_app folder" do
93-
cd test_app
93+
console "cd test_app"
9494
end
9595

9696
console <<-BASH

sites/installfest/get_a_sticker.step

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1+
step "Have a volunteer check your tool versions" do
12

23
message "Find a volunteer and have them watch the next steps."
34

4-
message "If this works - get a sticker from them for your computer!"
5-
65
verify "tool installation" do
76

87
tip "Most of the time, the version numbers don't have to match exactly. In general, if the *first two* numbers match, or if the full number you have is *greater* than the one below, then you're cool."
@@ -37,7 +36,13 @@ verify "tool installation" do
3736

3837
end
3938

40-
Create the "sticker" application do
39+
message "If this works - proceed to build the sticker app."
40+
41+
end
42+
43+
step "Build the sticker app" do
44+
45+
verify "rails" do
4146

4247
section "Change to your home directory" do
4348
option "Windows" do
@@ -97,6 +102,7 @@ Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem
97102
== CreateDrinks: migrated (0.0033s) ==========================================
98103
"
99104

105+
100106
console "rails server"
101107
result "
102108
=> Booting WEBrick
@@ -265,8 +271,12 @@ You should see the same screen as you did at `http://localhost:3000/drinks` and
265271

266272
end
267273

274+
message "If this works -- find a volunteer and show them"
275+
276+
end
277+
268278
step "Congratulations!" do
269-
message "You got a sticker!"
279+
message "Show a volunteer -- you get a sticker!"
270280
end
271281

272282
next_step "clean_up"

0 commit comments

Comments
 (0)