From 3e92b635fb5422207b7bbdc924e292e51e21f040 Mon Sep 17 00:00:00 2001 From: naruse Date: Wed, 16 Dec 2015 05:07:31 +0000 Subject: Add frozen_string_literal: false for all files When you change this to true, you may need to add more tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rubygems/plugin/exception/rubygems_plugin.rb | 1 + test/rubygems/plugin/load/rubygems_plugin.rb | 1 + test/rubygems/plugin/standarderror/rubygems_plugin.rb | 1 + 3 files changed, 3 insertions(+) (limited to 'test/rubygems/plugin') diff --git a/test/rubygems/plugin/exception/rubygems_plugin.rb b/test/rubygems/plugin/exception/rubygems_plugin.rb index 16c417e84d..1ab8c553e2 100644 --- a/test/rubygems/plugin/exception/rubygems_plugin.rb +++ b/test/rubygems/plugin/exception/rubygems_plugin.rb @@ -1,2 +1,3 @@ +# frozen_string_literal: false TestGem::TEST_PLUGIN_EXCEPTION = :loaded raise Exception.new('boom') diff --git a/test/rubygems/plugin/load/rubygems_plugin.rb b/test/rubygems/plugin/load/rubygems_plugin.rb index c7c72777aa..7336fd2b55 100644 --- a/test/rubygems/plugin/load/rubygems_plugin.rb +++ b/test/rubygems/plugin/load/rubygems_plugin.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false class TestGem TEST_PLUGIN_LOAD = :loaded end diff --git a/test/rubygems/plugin/standarderror/rubygems_plugin.rb b/test/rubygems/plugin/standarderror/rubygems_plugin.rb index 4b577a6518..a0850bf98e 100644 --- a/test/rubygems/plugin/standarderror/rubygems_plugin.rb +++ b/test/rubygems/plugin/standarderror/rubygems_plugin.rb @@ -1,2 +1,3 @@ +# frozen_string_literal: false TestGem::TEST_PLUGIN_STANDARDERROR = :loaded raise StandardError.new('boom') -- cgit v1.2.3