summaryrefslogtreecommitdiffstats
path: root/lib/redmine
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-03-17 01:47:12 +0000
committerGo MAEDA <maeda@farend.jp>2019-03-17 01:47:12 +0000
commitd16369b67c9dd34b007fc58f2f83cb36e6479f37 (patch)
tree20052c93d75cb3ff2669539e8b4bdb55b481819e /lib/redmine
parentd4daf4e23b2cab7f02f49aa9e5c3cf328ce37407 (diff)
downloadredmine-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 'lib/redmine')
-rw-r--r--lib/redmine/scm/adapters.rb2
-rw-r--r--lib/redmine/scm/adapters/command_failed.rb2
-rw-r--r--lib/redmine/scm/base.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/redmine/scm/adapters.rb b/lib/redmine/scm/adapters.rb
index 688cfbcc6..e18e1f56e 100644
--- a/lib/redmine/scm/adapters.rb
+++ b/lib/redmine/scm/adapters.rb
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
# Redmine - project management software
# Copyright (C) 2006-2017 Jean-Philippe Lang
diff --git a/lib/redmine/scm/adapters/command_failed.rb b/lib/redmine/scm/adapters/command_failed.rb
index c230c1e62..f161e2e28 100644
--- a/lib/redmine/scm/adapters/command_failed.rb
+++ b/lib/redmine/scm/adapters/command_failed.rb
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
# Redmine - project management software
# Copyright (C) 2006-2017 Jean-Philippe Lang
diff --git a/lib/redmine/scm/base.rb b/lib/redmine/scm/base.rb
index 2380b3a72..e9dc54358 100644
--- a/lib/redmine/scm/base.rb
+++ b/lib/redmine/scm/base.rb
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
module Redmine
module Scm