From: Jason Guiditta jguiditt@redhat.com
See if this makes it actually stick. --- src/config/environments/production.rb | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/config/environments/production.rb b/src/config/environments/production.rb index 3bb1785..90f3e04 100644 --- a/src/config/environments/production.rb +++ b/src/config/environments/production.rb @@ -65,7 +65,10 @@ Conductor::Application.configure do
# Send deprecation notices to registered listeners config.active_support.deprecation = :notify -end
-# Disable stylesheet updates on production -Compass.configuration.sass_options = { :never_update => true } + config.before_initialize do + # Disable stylesheet updates on production + Compass.configuration.sass_options = { :never_update => true } + end + +end