# HG changeset patch # User edogawaconan # Date 1398213188 -32400 # Node ID 8286aec90912b92984d1828b308c336292bef38a # Parent 58d7fa50b8cca392b29010c0a3ba8ac04f883b6f Fix quoting. diff -r 58d7fa50b8cc -r 8286aec90912 config/environment.rb --- a/config/environment.rb Wed Apr 23 09:25:11 2014 +0900 +++ b/config/environment.rb Wed Apr 23 09:33:08 2014 +0900 @@ -1,5 +1,5 @@ # Load the rails application -require File.expand_path('../application', __FILE__) +require File.expand_path("../application", __FILE__) # Initialize the rails application Zeropaste::Application.initialize! diff -r 58d7fa50b8cc -r 8286aec90912 config/environments/production.rb --- a/config/environments/production.rb Wed Apr 23 09:25:11 2014 +0900 +++ b/config/environments/production.rb Wed Apr 23 09:33:08 2014 +0900 @@ -33,7 +33,7 @@ config.assets.digest = true # Version of your assets, change this if you want to expire all your assets. - config.assets.version = '1.0' + config.assets.version = "1.0" # Specifies the header that your server uses for sending files. # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache @@ -50,7 +50,7 @@ config.logger = Logger.new(STDOUT) # Recommended by http://help.papertrailapp.com/kb/configuration/unicorn - config.logger.level = Logger.const_get('WARN') + config.logger.level = Logger.const_get("WARN") # Prepend all log lines with the following tags. # config.log_tags = [ :subdomain, :uuid ]