File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 # every request. This slows down response time but is perfect for development
66 # since you don't have to restart the webserver when you make code changes.
77 config . cache_classes = false
8+ config . eager_load = false
89
910 # Log error messages when you accidentally call methods on nil.
1011 config . whiny_nils = true
Original file line number Diff line number Diff line change 44 # The production environment is meant for finished, "live" apps.
55 # Code is not reloaded between requests
66 config . cache_classes = true
7+ config . eager_load = true
78
89 # Full error reports are disabled and caching is turned on
910 config . consider_all_requests_local = false
Original file line number Diff line number Diff line change 66 # your test database is "scratch space" for the test suite and is wiped
77 # and recreated between test runs. Don't rely on the data there!
88 config . cache_classes = true
9+ config . eager_load = false
910
1011 # Log error messages when you accidentally call methods on nil.
1112 config . whiny_nils = true
You can’t perform that action at this time.
0 commit comments