diff options
author | Go MAEDA <maeda@farend.jp> | 2019-03-21 06:06:53 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-03-21 06:06:53 +0000 |
commit | 3b55f654077dfb7b4764eafa52579a83bd22152f (patch) | |
tree | f54f71952c75bfc3077d8f8cf1b2fc556eaaadf2 /lib/plugins/open_id_authentication | |
parent | b900ae6107666deb601753eaa7abab0b299c006d (diff) | |
download | redmine-3b55f654077dfb7b4764eafa52579a83bd22152f.tar.gz redmine-3b55f654077dfb7b4764eafa52579a83bd22152f.zip |
Remove frozen_string_literal magic comment from files which are not used when running the application or tests (#23630).
git-svn-id: http://svn.redmine.org/redmine/trunk@17997 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/plugins/open_id_authentication')
10 files changed, 0 insertions, 20 deletions
diff --git a/lib/plugins/open_id_authentication/Rakefile b/lib/plugins/open_id_authentication/Rakefile index 3af3cd1f6..31074b856 100644 --- a/lib/plugins/open_id_authentication/Rakefile +++ b/lib/plugins/open_id_authentication/Rakefile @@ -1,5 +1,3 @@ -# frozen_string_literal: false - require 'rake' require 'rake/testtask' require 'rake/rdoctask' diff --git a/lib/plugins/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb b/lib/plugins/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb index 7c2ea2547..6f78afc71 100644 --- a/lib/plugins/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb +++ b/lib/plugins/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb @@ -1,5 +1,3 @@ -# frozen_string_literal: false - class OpenIdAuthenticationTablesGenerator < Rails::Generator::NamedBase def initialize(runtime_args, runtime_options = {}) super diff --git a/lib/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb b/lib/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb index e23257938..02fddd7fd 100644 --- a/lib/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb +++ b/lib/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb @@ -1,5 +1,3 @@ -# frozen_string_literal: false - class UpgradeOpenIdAuthenticationTablesGenerator < Rails::Generator::NamedBase def initialize(runtime_args, runtime_options = {}) super diff --git a/lib/plugins/open_id_authentication/lib/open_id_authentication.rb b/lib/plugins/open_id_authentication/lib/open_id_authentication.rb index 711a38d43..538f0cfdb 100644 --- a/lib/plugins/open_id_authentication/lib/open_id_authentication.rb +++ b/lib/plugins/open_id_authentication/lib/open_id_authentication.rb @@ -1,5 +1,3 @@ -# frozen_string_literal: false - require 'uri' require 'openid' require 'rack/openid' diff --git a/lib/plugins/open_id_authentication/lib/tasks/open_id_authentication_tasks.rake b/lib/plugins/open_id_authentication/lib/tasks/open_id_authentication_tasks.rake index 424852bd7..c71434a50 100644 --- a/lib/plugins/open_id_authentication/lib/tasks/open_id_authentication_tasks.rake +++ b/lib/plugins/open_id_authentication/lib/tasks/open_id_authentication_tasks.rake @@ -1,5 +1,3 @@ -# frozen_string_literal: false - namespace :open_id_authentication do namespace :db do desc "Creates authentication tables for use with OpenIdAuthentication" diff --git a/lib/plugins/open_id_authentication/test/mem_cache_store_test.rb b/lib/plugins/open_id_authentication/test/mem_cache_store_test.rb index ef5e424a3..18a943979 100644 --- a/lib/plugins/open_id_authentication/test/mem_cache_store_test.rb +++ b/lib/plugins/open_id_authentication/test/mem_cache_store_test.rb @@ -1,5 +1,3 @@ -# frozen_string_literal: false - require File.dirname(__FILE__) + '/test_helper' require File.dirname(__FILE__) + '/../lib/open_id_authentication/mem_cache_store' diff --git a/lib/plugins/open_id_authentication/test/normalize_test.rb b/lib/plugins/open_id_authentication/test/normalize_test.rb index 2968fc9c2..635d3abc9 100644 --- a/lib/plugins/open_id_authentication/test/normalize_test.rb +++ b/lib/plugins/open_id_authentication/test/normalize_test.rb @@ -1,5 +1,3 @@ -# frozen_string_literal: false - require File.dirname(__FILE__) + '/test_helper' class NormalizeTest < Test::Unit::TestCase diff --git a/lib/plugins/open_id_authentication/test/open_id_authentication_test.rb b/lib/plugins/open_id_authentication/test/open_id_authentication_test.rb index 147ebe7ae..ddcc17b96 100644 --- a/lib/plugins/open_id_authentication/test/open_id_authentication_test.rb +++ b/lib/plugins/open_id_authentication/test/open_id_authentication_test.rb @@ -1,5 +1,3 @@ -# frozen_string_literal: false - require File.dirname(__FILE__) + '/test_helper' class OpenIdAuthenticationTest < Test::Unit::TestCase diff --git a/lib/plugins/open_id_authentication/test/status_test.rb b/lib/plugins/open_id_authentication/test/status_test.rb index 9bf39056e..bf7bfb382 100644 --- a/lib/plugins/open_id_authentication/test/status_test.rb +++ b/lib/plugins/open_id_authentication/test/status_test.rb @@ -1,5 +1,3 @@ -# frozen_string_literal: false - require File.dirname(__FILE__) + '/test_helper' class StatusTest < Test::Unit::TestCase diff --git a/lib/plugins/open_id_authentication/test/test_helper.rb b/lib/plugins/open_id_authentication/test/test_helper.rb index 9af4077a5..cb76ceddc 100644 --- a/lib/plugins/open_id_authentication/test/test_helper.rb +++ b/lib/plugins/open_id_authentication/test/test_helper.rb @@ -1,5 +1,3 @@ -# frozen_string_literal: false - require 'test/unit' require 'rubygems' |