diff options
author | Go MAEDA <maeda@farend.jp> | 2019-03-17 01:47:12 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-03-17 01:47:12 +0000 |
commit | d16369b67c9dd34b007fc58f2f83cb36e6479f37 (patch) | |
tree | 20052c93d75cb3ff2669539e8b4bdb55b481819e /config/environments | |
parent | d4daf4e23b2cab7f02f49aa9e5c3cf328ce37407 (diff) | |
download | redmine-d16369b67c9dd34b007fc58f2f83cb36e6479f37.tar.gz redmine-d16369b67c9dd34b007fc58f2f83cb36e6479f37.zip |
Enable frozen_string_literal for files which don't contain string literals (#26561).
git-svn-id: http://svn.redmine.org/redmine/trunk@17981 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/environments')
-rw-r--r-- | config/environments/development.rb | 2 | ||||
-rw-r--r-- | config/environments/production.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb index d835395f1..fe0787155 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -1,4 +1,4 @@ -# frozen_string_literal: false +# frozen_string_literal: true Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb diff --git a/config/environments/production.rb b/config/environments/production.rb index d8e9824ee..16d9fc2f7 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -1,4 +1,4 @@ -# frozen_string_literal: false +# frozen_string_literal: true Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb |