Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 454 Bytes

08-03-better_errors.md

File metadata and controls

21 lines (20 loc) · 454 Bytes

Unit 8

Chapter 3: Better Errors

  • Add the following lines to the end of the Gemfile:
# BEGIN: Better Errors
# Provides more and better information in error pages
group :development do
  gem 'better_errors'
  gem 'binding_of_caller'
end
# END: Better Errors
  • Enter the command "sh git_check.sh".
  • Enter the following commands:
git add .
git commit -m "Added better_errors and binding_of_caller"
git push origin master
sh heroku.sh