development.rb 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. DepotClient::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. # Only use best-standards-support built into browsers.
  25. config.action_dispatch.best_standards_support = :builtin
  26. # Log the query plan for queries taking more than this (works
  27. # with SQLite, MySQL, and PostgreSQL).
  28. config.active_record.auto_explain_threshold_in_seconds = 0.5
  29. # Raise an error on page load if there are pending migrations
  30. config.active_record.migration_error = :page_load
  31. # Debug mode disables concatenation and preprocessing of assets.
  32. config.assets.debug = true
  33. end