development.rb 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. # Don't actually send emails
  23. config.action_mailer.delivery_method = :test
  24. #
  25. # Alternate configuration example, using gmail:
  26. # config.action_mailer.delivery_method = :smtp
  27. # config.action_mailer.smtp_settings = {
  28. # address: "smtp.gmail.com",
  29. # port: 587,
  30. # domain: "domain.of.sender.net",
  31. # authentication: "plain",
  32. # user_name: "dave",
  33. # password: "secret",
  34. # enable_starttls_auto: true
  35. # }
  36. # Print deprecation notices to the Rails logger
  37. config.active_support.deprecation = :log
  38. # Only use best-standards-support built into browsers
  39. config.action_dispatch.best_standards_support = :builtin
  40. # Do not compress assets
  41. config.assets.compress = false
  42. # Expands the lines which load the assets
  43. config.assets.debug = true
  44. end