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/installfest/deploy_a_rails_app.step
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -97,20 +97,16 @@ bundle install --without production
97
97
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:"
98
98
99
99
source_code :ruby, <<-RUBY
100
-
# root 'welcome#index'
100
+
Rails.application.routes.draw do
101
101
RUBY
102
102
103
-
message "Remove this line and replace it with:"
103
+
message "After this line, add a new line with the following:"
104
104
105
105
source_code :ruby, <<-RUBY
106
106
root 'drinks#index'
107
107
RUBY
108
108
109
109
message "Save the file."
110
-
111
-
message "Note that you must remove the leading '#', as lines that start with a # are
0 commit comments