diff options
author | Go MAEDA <maeda@farend.jp> | 2019-03-15 01:32:57 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-03-15 01:32:57 +0000 |
commit | 5861160ffc350a97b5ff41465fbd7e03008853e4 (patch) | |
tree | ad260a758b0c88c42debd6b567d6cd382d27ae42 /config/environments | |
parent | 9f4a4be01a48eb2cbb30f8786aee3b9fec830f19 (diff) | |
download | redmine-5861160ffc350a97b5ff41465fbd7e03008853e4.tar.gz redmine-5861160ffc350a97b5ff41465fbd7e03008853e4.zip |
Add "frozen_string_literal: false" for all files (#26561).
This will be changed to true in the future.
git-svn-id: http://svn.redmine.org/redmine/trunk@17947 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 | ||||
-rw-r--r-- | config/environments/test.rb | 2 | ||||
-rw-r--r-- | config/environments/test_pgsql.rb | 2 | ||||
-rw-r--r-- | config/environments/test_sqlite3.rb | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb index f7b15e140..d835395f1 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: false + 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 85cd3890c..d8e9824ee 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: false + Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb diff --git a/config/environments/test.rb b/config/environments/test.rb index e1a3252b0..ae06c36c6 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: false + Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb diff --git a/config/environments/test_pgsql.rb b/config/environments/test_pgsql.rb index 258914d20..a270fcada 100644 --- a/config/environments/test_pgsql.rb +++ b/config/environments/test_pgsql.rb @@ -1,2 +1,4 @@ +# frozen_string_literal: false + # Same as test.rb instance_eval File.read(File.join(File.dirname(__FILE__), 'test.rb')) diff --git a/config/environments/test_sqlite3.rb b/config/environments/test_sqlite3.rb index 258914d20..a270fcada 100644 --- a/config/environments/test_sqlite3.rb +++ b/config/environments/test_sqlite3.rb @@ -1,2 +1,4 @@ +# frozen_string_literal: false + # Same as test.rb instance_eval File.read(File.join(File.dirname(__FILE__), 'test.rb')) |