OSDN Git Service

0cbf04837bba8a2609e4fc9e5f3c8de8da5c3460
[pettanr/pettanr.git] / config / environments / development.rb
1 Pettanr::Application.configure do
2
3   ActiveSupport::Dependencies.autoload_paths << File::join( Rails.root, 'lib')
4   ActiveSupport::Dependencies.explicitly_unloadable_constants << 'Editor' 
5   ActiveSupport::Dependencies.explicitly_unloadable_constants << 'Peta' 
6   ActiveSupport::Dependencies.explicitly_unloadable_constants << 'ManifestBase' 
7   ActiveSupport::Dependencies.explicitly_unloadable_constants << 'Manifest' 
8   ActiveSupport::Dependencies.explicitly_unloadable_constants << 'LocalManifest' 
9   # Settings specified here will take precedence over those in config/application.rb
10
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
16   # Log error messages when you accidentally call methods on nil.
17   config.whiny_nils = true
18
19   # Show full error reports and disable caching
20   config.consider_all_requests_local       = true
21   config.action_controller.perform_caching = false
22
23   # Don't care if the mailer can't send
24   config.action_mailer.raise_delivery_errors = false
25
26   # Print deprecation notices to the Rails logger
27   config.active_support.deprecation = :log
28
29   # Only use best-standards-support built into browsers
30   config.action_dispatch.best_standards_support = :builtin
31
32   # Do not compress assets
33   config.assets.compress = false
34
35   # Expands the lines which load the assets
36   config.assets.debug = true
37   
38   # config.assets.digest = true
39   # config.static_cache_control = "public, max-age=1"
40 end
41