Guest User

Untitled

a guest
Oct 22nd, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. # development
  2. config.cache_classes = false
  3. config.whiny_nils = true
  4. config.consider_all_requests_local = true
  5. config.action_view.debug_rjs = true
  6. config.action_controller.perform_caching = false
  7. config.action_mailer.raise_delivery_errors = false
  8. config.action_mailer.default_url_options = { :host => 'localhost:3000' }
  9. config.active_support.deprecation = :log
  10. config.i18n.fallbacks = true
  11. config.action_dispatch.best_standards_support = :builtin
  12. ActiveMerchant::Billing::Base.mode = :test
  13.  
  14. # production
  15. config.cache_classes = true
  16. config.consider_all_requests_local = false
  17. config.action_controller.perform_caching = true
  18. config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
  19. config.serve_static_assets = false
  20. config.action_mailer.default_url_options = { :host => 'domain.com' }
  21. config.i18n.fallbacks = true
  22. config.active_support.deprecation = :notify
Add Comment
Please, Sign In to add comment