development.rb 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. # Log error messages when you accidentally call methods on nil.
  16. config.whiny_nils = true
  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. # Only use best-standards-support built into browsers
  25. config.action_dispatch.best_standards_support = :builtin
  26. # Do not compress assets
  27. config.assets.compress = false
  28. # Expands the lines which load the assets
  29. config.assets.debug = true
  30. end