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 /lib/tasks/locales.rake | |
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 'lib/tasks/locales.rake')
-rw-r--r-- | lib/tasks/locales.rake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/tasks/locales.rake b/lib/tasks/locales.rake index 028a25154..dbf7bcf45 100644 --- a/lib/tasks/locales.rake +++ b/lib/tasks/locales.rake @@ -1,3 +1,5 @@ +# frozen_string_literal: false + desc 'Updates and checks locales against en.yml' task :locales do %w(locales:update locales:check_interpolation).collect do |task| |