From 6319c35c15c452cfe5c050be0a177d82d1351300 Mon Sep 17 00:00:00 2001 From: naruse Date: Wed, 16 Dec 2015 05:31:54 +0000 Subject: handle ext/ as r53141 g -L frozen_string_literal ext/**/*.rb|xargs ruby -Ka -e'ARGV.each{|fn|puts fn;open(fn,"r+"){|f|s=f.read.sub(/\A(#!.*\n)?(#.*coding.*\n)?/,"\\&# frozen_string_literal: false\n");f.rewind;f.write s}}' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53143 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/psych/extconf.rb | 1 + ext/psych/lib/psych.rb | 1 + ext/psych/lib/psych/class_loader.rb | 1 + ext/psych/lib/psych/coder.rb | 1 + ext/psych/lib/psych/core_ext.rb | 1 + ext/psych/lib/psych/deprecated.rb | 1 + ext/psych/lib/psych/exception.rb | 1 + ext/psych/lib/psych/handler.rb | 1 + ext/psych/lib/psych/handlers/document_stream.rb | 1 + ext/psych/lib/psych/handlers/recorder.rb | 1 + ext/psych/lib/psych/json/ruby_events.rb | 1 + ext/psych/lib/psych/json/stream.rb | 1 + ext/psych/lib/psych/json/tree_builder.rb | 1 + ext/psych/lib/psych/json/yaml_events.rb | 1 + ext/psych/lib/psych/nodes.rb | 1 + ext/psych/lib/psych/nodes/alias.rb | 1 + ext/psych/lib/psych/nodes/document.rb | 1 + ext/psych/lib/psych/nodes/mapping.rb | 1 + ext/psych/lib/psych/nodes/node.rb | 1 + ext/psych/lib/psych/nodes/scalar.rb | 1 + ext/psych/lib/psych/nodes/sequence.rb | 1 + ext/psych/lib/psych/nodes/stream.rb | 1 + ext/psych/lib/psych/omap.rb | 1 + ext/psych/lib/psych/parser.rb | 1 + ext/psych/lib/psych/scalar_scanner.rb | 1 + ext/psych/lib/psych/set.rb | 1 + ext/psych/lib/psych/stream.rb | 1 + ext/psych/lib/psych/streaming.rb | 1 + ext/psych/lib/psych/syntax_error.rb | 1 + ext/psych/lib/psych/tree_builder.rb | 1 + ext/psych/lib/psych/versions.rb | 1 + ext/psych/lib/psych/visitors.rb | 1 + ext/psych/lib/psych/visitors/depth_first.rb | 1 + ext/psych/lib/psych/visitors/emitter.rb | 1 + ext/psych/lib/psych/visitors/json_tree.rb | 1 + ext/psych/lib/psych/visitors/to_ruby.rb | 1 + ext/psych/lib/psych/visitors/visitor.rb | 1 + ext/psych/lib/psych/visitors/yaml_tree.rb | 1 + ext/psych/lib/psych/y.rb | 1 + ext/psych/lib/psych_jars.rb | 1 + 40 files changed, 40 insertions(+) (limited to 'ext/psych') diff --git a/ext/psych/extconf.rb b/ext/psych/extconf.rb index 65e83a3554..be33d35a5e 100644 --- a/ext/psych/extconf.rb +++ b/ext/psych/extconf.rb @@ -1,4 +1,5 @@ # -*- coding: us-ascii -*- +# frozen_string_literal: false require 'mkmf' require 'fileutils' diff --git a/ext/psych/lib/psych.rb b/ext/psych/lib/psych.rb index 8ba6ef6cc7..83b5dbba29 100644 --- a/ext/psych/lib/psych.rb +++ b/ext/psych/lib/psych.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false case RUBY_ENGINE when 'jruby' require 'psych_jars' diff --git a/ext/psych/lib/psych/class_loader.rb b/ext/psych/lib/psych/class_loader.rb index 46c6b93627..ba756f7ea7 100644 --- a/ext/psych/lib/psych/class_loader.rb +++ b/ext/psych/lib/psych/class_loader.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/omap' require 'psych/set' diff --git a/ext/psych/lib/psych/coder.rb b/ext/psych/lib/psych/coder.rb index 2b830d2b21..26005f57b4 100644 --- a/ext/psych/lib/psych/coder.rb +++ b/ext/psych/lib/psych/coder.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych ### # If an object defines +encode_with+, then an instance of Psych::Coder will diff --git a/ext/psych/lib/psych/core_ext.rb b/ext/psych/lib/psych/core_ext.rb index 9c8134da7e..1a98279afd 100644 --- a/ext/psych/lib/psych/core_ext.rb +++ b/ext/psych/lib/psych/core_ext.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false class Object def self.yaml_tag url Psych.add_tag(url, self) diff --git a/ext/psych/lib/psych/deprecated.rb b/ext/psych/lib/psych/deprecated.rb index 8c310b3207..165d2102b4 100644 --- a/ext/psych/lib/psych/deprecated.rb +++ b/ext/psych/lib/psych/deprecated.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'date' module Psych diff --git a/ext/psych/lib/psych/exception.rb b/ext/psych/lib/psych/exception.rb index ce9d2caf3f..83c3d7fa82 100644 --- a/ext/psych/lib/psych/exception.rb +++ b/ext/psych/lib/psych/exception.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych class Exception < RuntimeError end diff --git a/ext/psych/lib/psych/handler.rb b/ext/psych/lib/psych/handler.rb index c55afe745f..1ab5f73e95 100644 --- a/ext/psych/lib/psych/handler.rb +++ b/ext/psych/lib/psych/handler.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych ### # Psych::Handler is an abstract base class that defines the events used diff --git a/ext/psych/lib/psych/handlers/document_stream.rb b/ext/psych/lib/psych/handlers/document_stream.rb index e429993c1c..c43b39ebc5 100644 --- a/ext/psych/lib/psych/handlers/document_stream.rb +++ b/ext/psych/lib/psych/handlers/document_stream.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/tree_builder' module Psych diff --git a/ext/psych/lib/psych/handlers/recorder.rb b/ext/psych/lib/psych/handlers/recorder.rb index 4eae62e5f9..341b81dec4 100644 --- a/ext/psych/lib/psych/handlers/recorder.rb +++ b/ext/psych/lib/psych/handlers/recorder.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/handler' module Psych diff --git a/ext/psych/lib/psych/json/ruby_events.rb b/ext/psych/lib/psych/json/ruby_events.rb index 6b73249c06..478eb667c7 100644 --- a/ext/psych/lib/psych/json/ruby_events.rb +++ b/ext/psych/lib/psych/json/ruby_events.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module JSON module RubyEvents # :nodoc: diff --git a/ext/psych/lib/psych/json/stream.rb b/ext/psych/lib/psych/json/stream.rb index fe2a6e9116..83b7e13655 100644 --- a/ext/psych/lib/psych/json/stream.rb +++ b/ext/psych/lib/psych/json/stream.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/json/ruby_events' require 'psych/json/yaml_events' diff --git a/ext/psych/lib/psych/json/tree_builder.rb b/ext/psych/lib/psych/json/tree_builder.rb index b799c93f58..2f94b8c252 100644 --- a/ext/psych/lib/psych/json/tree_builder.rb +++ b/ext/psych/lib/psych/json/tree_builder.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/json/yaml_events' module Psych diff --git a/ext/psych/lib/psych/json/yaml_events.rb b/ext/psych/lib/psych/json/yaml_events.rb index d054d9b458..07f64737c5 100644 --- a/ext/psych/lib/psych/json/yaml_events.rb +++ b/ext/psych/lib/psych/json/yaml_events.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module JSON module YAMLEvents # :nodoc: diff --git a/ext/psych/lib/psych/nodes.rb b/ext/psych/lib/psych/nodes.rb index f3b33fe975..01573b509b 100644 --- a/ext/psych/lib/psych/nodes.rb +++ b/ext/psych/lib/psych/nodes.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/nodes/node' require 'psych/nodes/stream' require 'psych/nodes/document' diff --git a/ext/psych/lib/psych/nodes/alias.rb b/ext/psych/lib/psych/nodes/alias.rb index 5bd4df13d1..716a00d62f 100644 --- a/ext/psych/lib/psych/nodes/alias.rb +++ b/ext/psych/lib/psych/nodes/alias.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/document.rb b/ext/psych/lib/psych/nodes/document.rb index 32014d60dc..7234fef1d8 100644 --- a/ext/psych/lib/psych/nodes/document.rb +++ b/ext/psych/lib/psych/nodes/document.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/mapping.rb b/ext/psych/lib/psych/nodes/mapping.rb index 5ba95ce4b6..4c11df8cd6 100644 --- a/ext/psych/lib/psych/nodes/mapping.rb +++ b/ext/psych/lib/psych/nodes/mapping.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/node.rb b/ext/psych/lib/psych/nodes/node.rb index 83233a61fd..e3621dc451 100644 --- a/ext/psych/lib/psych/nodes/node.rb +++ b/ext/psych/lib/psych/nodes/node.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'stringio' require 'psych/class_loader' require 'psych/scalar_scanner' diff --git a/ext/psych/lib/psych/nodes/scalar.rb b/ext/psych/lib/psych/nodes/scalar.rb index 1b1b25b98a..ee5570518e 100644 --- a/ext/psych/lib/psych/nodes/scalar.rb +++ b/ext/psych/lib/psych/nodes/scalar.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/sequence.rb b/ext/psych/lib/psych/nodes/sequence.rb index 7e907fe2c8..1096469567 100644 --- a/ext/psych/lib/psych/nodes/sequence.rb +++ b/ext/psych/lib/psych/nodes/sequence.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/stream.rb b/ext/psych/lib/psych/nodes/stream.rb index 7cf5e033ec..559b0846e7 100644 --- a/ext/psych/lib/psych/nodes/stream.rb +++ b/ext/psych/lib/psych/nodes/stream.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/omap.rb b/ext/psych/lib/psych/omap.rb index 6286270616..233b945c4a 100644 --- a/ext/psych/lib/psych/omap.rb +++ b/ext/psych/lib/psych/omap.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych class Omap < ::Hash end diff --git a/ext/psych/lib/psych/parser.rb b/ext/psych/lib/psych/parser.rb index 84085f1fb0..242512f89f 100644 --- a/ext/psych/lib/psych/parser.rb +++ b/ext/psych/lib/psych/parser.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych ### # YAML event parser class. This class parses a YAML document and calls diff --git a/ext/psych/lib/psych/scalar_scanner.rb b/ext/psych/lib/psych/scalar_scanner.rb index 93007902a7..f519da1465 100644 --- a/ext/psych/lib/psych/scalar_scanner.rb +++ b/ext/psych/lib/psych/scalar_scanner.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'strscan' module Psych diff --git a/ext/psych/lib/psych/set.rb b/ext/psych/lib/psych/set.rb index 6793a8ed1b..f35be15e6f 100644 --- a/ext/psych/lib/psych/set.rb +++ b/ext/psych/lib/psych/set.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych class Set < ::Hash end diff --git a/ext/psych/lib/psych/stream.rb b/ext/psych/lib/psych/stream.rb index 88c4c4cb4e..2f63d7d552 100644 --- a/ext/psych/lib/psych/stream.rb +++ b/ext/psych/lib/psych/stream.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych ### # Psych::Stream is a streaming YAML emitter. It will not buffer your YAML, diff --git a/ext/psych/lib/psych/streaming.rb b/ext/psych/lib/psych/streaming.rb index 9d94eb549f..260f8a8008 100644 --- a/ext/psych/lib/psych/streaming.rb +++ b/ext/psych/lib/psych/streaming.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Streaming module ClassMethods diff --git a/ext/psych/lib/psych/syntax_error.rb b/ext/psych/lib/psych/syntax_error.rb index e200ef0060..db293b9fb2 100644 --- a/ext/psych/lib/psych/syntax_error.rb +++ b/ext/psych/lib/psych/syntax_error.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/exception' module Psych diff --git a/ext/psych/lib/psych/tree_builder.rb b/ext/psych/lib/psych/tree_builder.rb index c8f344787c..d359c933af 100644 --- a/ext/psych/lib/psych/tree_builder.rb +++ b/ext/psych/lib/psych/tree_builder.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/handler' module Psych diff --git a/ext/psych/lib/psych/versions.rb b/ext/psych/lib/psych/versions.rb index 530d310f44..5f7652b097 100644 --- a/ext/psych/lib/psych/versions.rb +++ b/ext/psych/lib/psych/versions.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych DEFAULT_SNAKEYAML_VERSION = '1.14'.freeze end diff --git a/ext/psych/lib/psych/visitors.rb b/ext/psych/lib/psych/visitors.rb index cc98b103f1..5dee4ebd7a 100644 --- a/ext/psych/lib/psych/visitors.rb +++ b/ext/psych/lib/psych/visitors.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/visitors/visitor' require 'psych/visitors/to_ruby' require 'psych/visitors/emitter' diff --git a/ext/psych/lib/psych/visitors/depth_first.rb b/ext/psych/lib/psych/visitors/depth_first.rb index c6eb814ac0..2d74a212d6 100644 --- a/ext/psych/lib/psych/visitors/depth_first.rb +++ b/ext/psych/lib/psych/visitors/depth_first.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Visitors class DepthFirst < Psych::Visitors::Visitor diff --git a/ext/psych/lib/psych/visitors/emitter.rb b/ext/psych/lib/psych/visitors/emitter.rb index c886e5092e..f2ff9fdb28 100644 --- a/ext/psych/lib/psych/visitors/emitter.rb +++ b/ext/psych/lib/psych/visitors/emitter.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Visitors class Emitter < Psych::Visitors::Visitor diff --git a/ext/psych/lib/psych/visitors/json_tree.rb b/ext/psych/lib/psych/visitors/json_tree.rb index 0127ac8aa8..f2f0215cd2 100644 --- a/ext/psych/lib/psych/visitors/json_tree.rb +++ b/ext/psych/lib/psych/visitors/json_tree.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/json/ruby_events' module Psych diff --git a/ext/psych/lib/psych/visitors/to_ruby.rb b/ext/psych/lib/psych/visitors/to_ruby.rb index 4c3591b373..c061da25f1 100644 --- a/ext/psych/lib/psych/visitors/to_ruby.rb +++ b/ext/psych/lib/psych/visitors/to_ruby.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/scalar_scanner' require 'psych/class_loader' require 'psych/exception' diff --git a/ext/psych/lib/psych/visitors/visitor.rb b/ext/psych/lib/psych/visitors/visitor.rb index 4d7772f428..d97bf550f6 100644 --- a/ext/psych/lib/psych/visitors/visitor.rb +++ b/ext/psych/lib/psych/visitors/visitor.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Visitors class Visitor diff --git a/ext/psych/lib/psych/visitors/yaml_tree.rb b/ext/psych/lib/psych/visitors/yaml_tree.rb index 6ad30d2683..e7c7a99060 100644 --- a/ext/psych/lib/psych/visitors/yaml_tree.rb +++ b/ext/psych/lib/psych/visitors/yaml_tree.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/tree_builder' require 'psych/scalar_scanner' require 'psych/class_loader' diff --git a/ext/psych/lib/psych/y.rb b/ext/psych/lib/psych/y.rb index d0e049d4e5..82e05a783c 100644 --- a/ext/psych/lib/psych/y.rb +++ b/ext/psych/lib/psych/y.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Kernel ### # An alias for Psych.dump_stream meant to be used with IRB. diff --git a/ext/psych/lib/psych_jars.rb b/ext/psych/lib/psych_jars.rb index 795c7ea4a8..bd7ea04de7 100644 --- a/ext/psych/lib/psych_jars.rb +++ b/ext/psych/lib/psych_jars.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'psych/versions' require 'psych.jar' -- cgit v1.2.3