Skip to content

Commit fb8a05b

Browse files
committed
Assorted minor tweaks
* Don't put `heroku info` in a big black box, that just means students always blindly type it in. * Switch a couple "Rails 4.1" to "Rails 4.2" * On the Suggestorton->Ruby page, tell students to just paste in the last example instead of trying to type it.
1 parent 100af11 commit fb8a05b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

sites/en/installfest/create_a_rails_app.step

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ step "Create a new Rails app" do
4545

4646
fuzzy_result <<-TEXT
4747
=> Booting WEBrick
48-
=> Rails 4.{FUZZY}1.x{/FUZZY} application starting in development on http://0.0.0.0:3000
48+
=> Rails 4.{FUZZY}2.x{/FUZZY} application starting in development on http://0.0.0.0:3000
4949
=> Call with -d to detach
5050
=> Ctrl-C to shutdown server
5151
[2010-09-30 21:04:12] INFO WEBrick 1.3.1

sites/en/installfest/deploy_a_rails_app.step

+5-6
Original file line numberDiff line numberDiff line change
@@ -166,20 +166,19 @@ bundle install --without production
166166

167167
step "Visit your new application" do
168168

169-
message "In the browser, go to your application's URL. You'll need your Heroku application name."
170-
171-
tip "To find your Heroku application name" do
172-
console "heroku info"
173-
end
169+
message "Now that the app is deployed, you can visit it in a browser."
174170

175171
tip "To quickly open your heroku application in a browser" do
176172
console "heroku open"
177173
end
178174

179-
message "The URL for your app is <code>*application-name*.heroku.com</code> -- so with the example output in the previous step, it would be <code>floating-winter-18.heroku.com</code>. Verify you see the welcome page. Leave this browser window open."
175+
message "The URL for your app is <code>*application-name*.heroku.com</code> -- something like <code>floating-winter-18.heroku.com</code>."
176+
177+
message "Verify you see the welcome page. Leave this browser window open."
180178

181179
message "Create and save a new drink to verify you can write to the database on Heroku."
182180

181+
message "If you want to see a little more info about your app, you can run `heroku info`."
183182
end
184183
end
185184

sites/en/installfest/osx_rvm.step

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ step "Install Rails" do
4949
console "gem install rails"
5050
verify do
5151
console "rails -v"
52-
fuzzy_result "Rails 4.{FUZZY}1.x{/FUZZY}"
52+
fuzzy_result "Rails 4.{FUZZY}2.x{/FUZZY}"
5353
end
5454
end
5555

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

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ pluralize("kiwi")
137137

138138
step do
139139
message "Putting it all together, let's make a method that says your opinion of some fruits:"
140+
message "**Don't try to type this all in!** Just paste it into irb and see what happens."
140141
console_without_message <<-RUBY
141142
def my_opinion(fruits)
142143
fruits.each do |fruit|

0 commit comments

Comments
 (0)