development.rb 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #---
  2. # Excerpted from "Agile Web Development with Rails",
  3. # published by The Pragmatic Bookshelf.
  4. # Copyrights apply to this code. It may not be used to create training material,
  5. # courses, books, articles, and the like. Contact us if you are in doubt.
  6. # We make no guarantees that this code is fit for any purpose.
  7. # Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
  8. #---
  9. Depot::Application.configure do
  10. # Settings specified here will take precedence over those in config/application.rb.
  11. # In the development environment your application's code is reloaded on
  12. # every request. This slows down response time but is perfect for development
  13. # since you don't have to restart the web server when you make code changes.
  14. config.cache_classes = false
  15. # Do not eager load code on boot.
  16. config.eager_load = false
  17. # Show full error reports and disable caching.
  18. config.consider_all_requests_local = true
  19. config.action_controller.perform_caching = false
  20. # Don't care if the mailer can't send.
  21. config.action_mailer.raise_delivery_errors = false
  22. # Print deprecation notices to the Rails logger.
  23. config.active_support.deprecation = :log
  24. # Raise an error on page load if there are pending migrations
  25. config.active_record.migration_error = :page_load
  26. # Debug mode disables concatenation and preprocessing of assets.
  27. # This option may cause significant delays in view rendering with a large
  28. # number of complex assets.
  29. config.assets.debug = true
  30. end