# HG changeset patch # User Edho Arief # Date 1355397087 -25200 # Node ID 5466704c87ee2347d6f0b0d469bf0f3fc2250205 # Parent faded97bb0954db99a8915fc8b4361e84c51baa6 I mean this. diff -r faded97bb095 -r 5466704c87ee config/default_config.rb --- a/config/default_config.rb Thu Dec 13 18:09:24 2012 +0700 +++ b/config/default_config.rb Thu Dec 13 18:11:27 2012 +0700 @@ -1,5 +1,5 @@ -CONFIG['standalone'] = true unless CONFIG['standalone'] -CONFIG['newrelic'] = false unless CONFIG['newrelic'] +CONFIG['standalone'] = true if CONFIG['standalone'].nil? +CONFIG['newrelic'] = false if CONFIG['newrelic'].nil? CONFIG['bundler_groups'] ||= Rails.groups(:assets => %w(development test)) CONFIG['bundler_groups'] << 'standalone' if CONFIG['standalone'] CONFIG['bundler_groups'] << 'newrelic' if CONFIG['newrelic']