public
Description: El Dorado is a full-stack community web application written in Ruby/Rails.
Homepage: http://almosteffortless.com/eldorado/
Clone URL: git://github.com/trevorturk/el-dorado.git
updating to rails 2.1 enviroment configs
trevorturk (author)
Mon Jun 02 20:41:15 -0700 2008
commit  b0b2dd822672d77c5dec02b28f0edb923fc2f294
tree    76782356f2f0be11dca2ea3e28d71f16201cb2fd
parent  c3d0c2a6da1921111d11aa1462a169afcfa39509
...
12
13
14
15
16
17
18
19
 
...
12
13
14
 
15
16
 
17
18
0
@@ -12,7 +12,6 @@ config.whiny_nils = true
0
 config.action_controller.consider_all_requests_local = true
0
 config.action_view.debug_rjs = true
0
 config.action_controller.perform_caching = false
0
-config.action_view.cache_template_extensions = false
0
 
0
 # Don't care if the mailer can't send
0
-config.action_mailer.raise_delivery_errors = false
0
\ No newline at end of file
0
+config.action_mailer.raise_delivery_errors = false
...
9
10
11
12
13
 
 
 
 
 
14
15
16
17
18
 
19
20
21
...
9
10
11
 
 
12
13
14
15
16
17
18
19
20
 
21
22
23
24
0
@@ -9,13 +9,16 @@ config.cache_classes = true
0
 
0
 # Full error reports are disabled and caching is turned on
0
 config.action_controller.consider_all_requests_local = false
0
-config.action_controller.perform_caching = true
0
-config.action_view.cache_template_loading = true
0
+config.action_controller.perform_caching = true
0
+config.action_view.cache_template_loading = true
0
+
0
+# Use a different cache store in production
0
+# config.cache_store = :mem_cache_store
0
 
0
 # Enable serving of images, stylesheets, and javascripts from an asset server
0
 # config.action_controller.asset_host = "http://assets.example.com"
0
 
0
-# Disable delivery errors if you bad email addresses should just be ignored
0
+# Disable delivery errors, bad email addresses will be ignored
0
 # config.action_mailer.raise_delivery_errors = false
0
 
0
 config.after_initialize do
...
16
17
18
19
 
20
21
22
...
16
17
18
 
19
20
21
22
0
@@ -16,7 +16,7 @@ config.action_controller.perform_caching = false
0
 # Disable request forgery protection in test environment
0
 config.action_controller.allow_forgery_protection = false
0
 
0
-# Tell ActionMailer not to deliver emails to the real world.
0
+# Tell Action Mailer not to deliver emails to the real world.
0
 # The :test delivery method accumulates sent emails in the
0
 # ActionMailer::Base.deliveries array.
0
 config.action_mailer.delivery_method = :test

Comments

    No one has commented yet.