]> source.dussan.org Git - redmine.git/commitdiff
Enable frozen_string_literal for files which don't contain string literals (#26561).
authorGo MAEDA <maeda@farend.jp>
Sun, 17 Mar 2019 01:47:12 +0000 (01:47 +0000)
committerGo MAEDA <maeda@farend.jp>
Sun, 17 Mar 2019 01:47:12 +0000 (01:47 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@17981 e93f8b46-1217-0410-a6f0-8f06a7374b81

config/environments/development.rb
config/environments/production.rb
config/initializers/20-mime_types.rb
config/initializers/inflections.rb
lib/plugins/acts_as_tree/init.rb
lib/plugins/open_id_authentication/lib/open_id_authentication/association.rb
lib/plugins/open_id_authentication/lib/open_id_authentication/nonce.rb
lib/plugins/open_id_authentication/lib/open_id_authentication/timeout_fixes.rb
lib/redmine/scm/adapters.rb
lib/redmine/scm/adapters/command_failed.rb
lib/redmine/scm/base.rb

index d835395f1d39eb092b8539002ad674043967dea8..fe0787155e351a2f0a3d1645c00310b333708abd 100644 (file)
@@ -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
index d8e9824eee4578c03142e5c1d66011dd45832f32..16d9fc2f7363925c5fe7fc377ec2443b5fe43521 100644 (file)
@@ -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
index f5a1c3783d517814aff28f5cbf4c3502b447e686..3367334a4b83df3a87114227308e3255be52da81 100644 (file)
@@ -1,3 +1,3 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
 
 # Add new mime types for use in respond_to blocks:
index 4347c3a3d3d238c0a540afc3ec37ed7fb24a11ee..73732d874a45228a899f81e20b134256cf2bc0c5 100644 (file)
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
 
 # Be sure to restart your server when you modify this file.
 
index f5560f449f2fccaa4adb892dcd8f737b43b47886..e45bc11e53acdc6796c1263d325fdc2da5da0b36 100644 (file)
@@ -1,3 +1,3 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
 
 ActiveRecord::Base.send :include, ActiveRecord::Acts::Tree
index 07e844bcfa1dd96ff927fc9cac6586262816fbb9..0815e9e399606d8098585ec91a58d4e042993794 100644 (file)
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
 
 module OpenIdAuthentication
   class Association < ActiveRecord::Base
index 0f41e141b077fbfb58c99143c76517179bed679c..0638744404d9c1d81b10b006d13d4c58947d41b2 100644 (file)
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
 
 module OpenIdAuthentication
   class Nonce < ActiveRecord::Base
index 0fb9dfc223157856200bedc7866da02847e56a06..daa3e3b9f0341f928ad12faca4d6c88eaafd5cc2 100644 (file)
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
 
 # http://trac.openidenabled.com/trac/ticket/156
 module OpenID
index 688cfbcc61902b7a75fed87eda04d37f36a4f371..e18e1f56e48ad4595b97d763c61656f1618ac587 100644 (file)
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
 
 # Redmine - project management software
 # Copyright (C) 2006-2017  Jean-Philippe Lang
index c230c1e621c1a9c7819afa0507902ec75da5c9d7..f161e2e28fe3a0abbb13350e831886367f002df1 100644 (file)
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
 
 # Redmine - project management software
 # Copyright (C) 2006-2017  Jean-Philippe Lang
index 2380b3a722d5c23469c21303cac2c867d493ba99..e9dc54358834c4aba1be3b2b5603959512d4bd55 100644 (file)
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
 
 module Redmine
   module Scm