development.rb 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. Rails.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. # 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. # Raise an error on page load if there are pending migrations.
  39. config.active_record.migration_error = :page_load
  40. # Debug mode disables concatenation and preprocessing of assets.
  41. # This option may cause significant delays in view rendering with a large
  42. # number of complex assets.
  43. config.assets.debug = true
  44. # Adds additional error checking when serving assets at runtime.
  45. # Checks for improperly declared sprockets dependencies.
  46. # Raises helpful error messages.
  47. config.assets.raise_runtime_errors = true
  48. # Raises error for missing translations
  49. # config.action_view.raise_on_missing_translations = true
  50. end