Skip to content

Commit b698a69

Browse files
RobinClowerstjgrathwell
authored andcommitted
Update deploy_a_rails_app for rails 5
1 parent 28b7669 commit b698a69

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

sites/en/installfest/deploy_a_rails_app.step

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,20 +97,16 @@ bundle install --without production
9797
message "Use your editor to open the file routes.rb (`C:\\sites\\railsbridge\\test_app\\config\\routes.rb` or `~/railsbridge/test_app/config/routes.rb`) and find the line containing:"
9898

9999
source_code :ruby, <<-RUBY
100-
# root 'welcome#index'
100+
Rails.application.routes.draw do
101101
RUBY
102102

103-
message "Remove this line and replace it with:"
103+
message "After this line, add a new line with the following:"
104104

105105
source_code :ruby, <<-RUBY
106106
root 'drinks#index'
107107
RUBY
108108

109109
message "Save the file."
110-
111-
message "Note that you must remove the leading '#', as lines that start with a # are
112-
comments and will not have any effect."
113-
114110
end
115111

116112
step "Add the changes to git" do

0 commit comments

Comments
 (0)