aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/test/dummy/config/environments/production.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-08-03 03:13:11 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-08-03 03:13:11 +0900
commit815d1abf3962d65c0bb9043c99a507580b4360df (patch)
tree15e3dd06455877e6e702e898e2b8fce8592d3cef /activestorage/test/dummy/config/environments/production.rb
parentc6974229d018b73f70e38ca8c8862473870d0274 (diff)
downloadrails-815d1abf3962d65c0bb9043c99a507580b4360df.tar.gz
rails-815d1abf3962d65c0bb9043c99a507580b4360df.tar.bz2
rails-815d1abf3962d65c0bb9043c99a507580b4360df.zip
Fix `Style/StringLiterals` violations for Active Storage
``` % be rubocop -a --only Style/StringLiterals activestorage Inspecting 74 files ........................................CCCCCCCCCC.C........CC.......C.C.. (snip) 74 files inspected, 31 offenses detected, 31 offenses corrected ```
Diffstat (limited to 'activestorage/test/dummy/config/environments/production.rb')
-rw-r--r--activestorage/test/dummy/config/environments/production.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/test/dummy/config/environments/production.rb b/activestorage/test/dummy/config/environments/production.rb
index 35a30e084a..343da23f0b 100644
--- a/activestorage/test/dummy/config/environments/production.rb
+++ b/activestorage/test/dummy/config/environments/production.rb
@@ -21,7 +21,7 @@ Rails.application.configure do
# Disable serving static files from the `/public` folder by default since
# Apache or NGINX already handles this.
- config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
+ config.public_file_server.enabled = ENV["RAILS_SERVE_STATIC_FILES"].present?
# Compress JavaScripts and CSS.
config.assets.js_compressor = :uglifier