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
message "Use your editor to open the routes.rb (`C:\\sites\\sticker\\config\\routes.rb` or `~/sticker/config/routes.rb`) and find the line containing:"
217
219
218
-
message "The name of your heroku app will be different. That is fine."
220
+
source_code :ruby, <<-RUBY
221
+
# root 'welcome#index'
222
+
RUBY
223
+
224
+
message "Remove this line and replace it with"
225
+
226
+
source_code :ruby, <<-RUBY
227
+
root 'drinks#index'
228
+
RUBY
229
+
230
+
message "Commit this change"
231
+
232
+
console <<-GIT_COMMIT
233
+
git add .
234
+
git commit -m "Changed root route"
235
+
GIT_COMMIT
236
+
237
+
message "The name of your heroku app will be different. That is fine."
0 commit comments