diff options
| author | mo khan <mo@mokhan.ca> | 2014-02-20 18:06:41 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2014-02-20 18:06:41 -0700 |
| commit | 1bff8ede68b131f183c96eafacb99df6c9ee514a (patch) | |
| tree | 1c6be6f9075ef519bb24b84003544a5b31fe41b4 /config/environments/development.rb | |
| parent | 734c8c53aa1821a199a76350fd7cbe3449c1193d (diff) | |
rails new .
Diffstat (limited to 'config/environments/development.rb')
| -rw-r--r-- | config/environments/development.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 0000000..b6a245b --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,25 @@ +CodeChallengeMo::Application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations + config.active_record.migration_error = :page_load + +end |
