diff options
author | Koichi ITO <koic.ito@gmail.com> | 2017-08-12 21:32:15 +0900 |
---|---|---|
committer | Koichi ITO <koic.ito@gmail.com> | 2017-08-12 21:43:42 +0900 |
commit | d02844f2499be488d262bc274530ec44e242fd70 (patch) | |
tree | 7ff85210a7d93db94509bf12bd5e520f46c59e96 /activestorage/test/dummy/config/environments | |
parent | 98360a96cc1e0bb6ab9eb31f421a36439e66eefc (diff) | |
download | rails-d02844f2499be488d262bc274530ec44e242fd70.tar.gz rails-d02844f2499be488d262bc274530ec44e242fd70.tar.bz2 rails-d02844f2499be488d262bc274530ec44e242fd70.zip |
Use frozen string literal in Active Storage
Diffstat (limited to 'activestorage/test/dummy/config/environments')
3 files changed, 6 insertions, 0 deletions
diff --git a/activestorage/test/dummy/config/environments/development.rb b/activestorage/test/dummy/config/environments/development.rb index 5f3d463210..47fc5bf25c 100644 --- a/activestorage/test/dummy/config/environments/development.rb +++ b/activestorage/test/dummy/config/environments/development.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb. diff --git a/activestorage/test/dummy/config/environments/production.rb b/activestorage/test/dummy/config/environments/production.rb index 343da23f0b..34ac3bc561 100644 --- a/activestorage/test/dummy/config/environments/production.rb +++ b/activestorage/test/dummy/config/environments/production.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb. diff --git a/activestorage/test/dummy/config/environments/test.rb b/activestorage/test/dummy/config/environments/test.rb index 4f2c048600..ce0889e8ae 100644 --- a/activestorage/test/dummy/config/environments/test.rb +++ b/activestorage/test/dummy/config/environments/test.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb. |