ruby-changes:40445
From: akr <ko1@a...>
Date: Tue, 10 Nov 2015 20:48:40 +0900 (JST)
Subject: [ruby-changes:40445] akr:r52526 (trunk): * lib/open-uri.rb: Remove indicator for "frozen_string_literal: true".
akr 2015-11-10 20:48:14 +0900 (Tue, 10 Nov 2015) New Revision: 52526 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=52526 Log: * lib/open-uri.rb: Remove indicator for "frozen_string_literal: true". * lib/pp.rb: Ditto. * lib/prettyprint.rb: Ditto. * lib/resolv.rb: Ditto. * lib/securerandom.rb: Ditto. * lib/tmpdir.rb: Ditto. * lib/unicode_normalize/tables.rb: Ditto. * test/net/ftp/test_buffered_socket.rb: Ditto. * test/net/ftp/test_mlsx_entry.rb: Ditto. * test/open-uri/test_open-uri.rb: Ditto. * test/open-uri/test_ssl.rb: Ditto. * test/pathname/test_pathname.rb: Ditto. * test/test_pp.rb: Ditto. * test/test_prettyprint.rb: Ditto. * tool/transcode-tblgen.rb: Ditto. * ext/pathname/lib/pathname.rb: Ditto. Modified files: trunk/ChangeLog trunk/ext/pathname/lib/pathname.rb trunk/lib/open-uri.rb trunk/lib/pp.rb trunk/lib/prettyprint.rb trunk/lib/resolv.rb trunk/lib/securerandom.rb trunk/lib/tmpdir.rb trunk/lib/unicode_normalize/tables.rb trunk/test/net/ftp/test_buffered_socket.rb trunk/test/net/ftp/test_mlsx_entry.rb trunk/test/open-uri/test_open-uri.rb trunk/test/open-uri/test_ssl.rb trunk/test/pathname/test_pathname.rb trunk/test/test_pp.rb trunk/test/test_prettyprint.rb trunk/tool/transcode-tblgen.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 52525) +++ ChangeLog (revision 52526) @@ -1,3 +1,37 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Tue Nov 10 20:35:12 2015 Tanaka Akira <akr@f...> + + * lib/open-uri.rb: Remove indicator for "frozen_string_literal: true". + + * lib/pp.rb: Ditto. + + * lib/prettyprint.rb: Ditto. + + * lib/resolv.rb: Ditto. + + * lib/securerandom.rb: Ditto. + + * lib/tmpdir.rb: Ditto. + + * lib/unicode_normalize/tables.rb: Ditto. + + * test/net/ftp/test_buffered_socket.rb: Ditto. + + * test/net/ftp/test_mlsx_entry.rb: Ditto. + + * test/open-uri/test_open-uri.rb: Ditto. + + * test/open-uri/test_ssl.rb: Ditto. + + * test/pathname/test_pathname.rb: Ditto. + + * test/test_pp.rb: Ditto. + + * test/test_prettyprint.rb: Ditto. + + * tool/transcode-tblgen.rb: Ditto. + + * ext/pathname/lib/pathname.rb: Ditto. + Tue Nov 10 18:42:24 2015 Aleksandrs Ledovskis <aleksandrs@l...> * defs/id.def, parse.y: Switch internal token name to reflect Index: lib/prettyprint.rb =================================================================== --- lib/prettyprint.rb (revision 52525) +++ lib/prettyprint.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/lib/prettyprint.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true # # This class implements a pretty printing algorithm. It finds line breaks and # nice indentations for grouped structure. Index: lib/resolv.rb =================================================================== --- lib/resolv.rb (revision 52525) +++ lib/resolv.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/lib/resolv.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require 'socket' require 'timeout' Index: lib/pp.rb =================================================================== --- lib/pp.rb (revision 52525) +++ lib/pp.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/lib/pp.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require 'prettyprint' Index: lib/open-uri.rb =================================================================== --- lib/open-uri.rb (revision 52525) +++ lib/open-uri.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/lib/open-uri.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require 'uri' require 'stringio' require 'time' Index: lib/unicode_normalize/tables.rb =================================================================== --- lib/unicode_normalize/tables.rb (revision 52525) +++ lib/unicode_normalize/tables.rb (revision 52526) @@ -1,5 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/lib/unicode_normalize/tables.rb#L1 # coding: us-ascii -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true # automatically generated by template/unicode_norm_gen.tmpl Index: lib/securerandom.rb =================================================================== --- lib/securerandom.rb (revision 52525) +++ lib/securerandom.rb (revision 52526) @@ -1,5 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/lib/securerandom.rb#L1 # -*- coding: us-ascii -*- -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true begin require 'openssl' rescue LoadError Index: lib/tmpdir.rb =================================================================== --- lib/tmpdir.rb (revision 52525) +++ lib/tmpdir.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/lib/tmpdir.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true # # tmpdir - retrieve temporary directory path # Index: ext/pathname/lib/pathname.rb =================================================================== --- ext/pathname/lib/pathname.rb (revision 52525) +++ ext/pathname/lib/pathname.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/ext/pathname/lib/pathname.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true # # = pathname.rb # Index: tool/transcode-tblgen.rb =================================================================== --- tool/transcode-tblgen.rb (revision 52525) +++ tool/transcode-tblgen.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/tool/transcode-tblgen.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require 'optparse' require 'erb' Index: test/test_prettyprint.rb =================================================================== --- test/test_prettyprint.rb (revision 52525) +++ test/test_prettyprint.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/test_prettyprint.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require 'prettyprint' require 'test/unit' Index: test/pathname/test_pathname.rb =================================================================== --- test/pathname/test_pathname.rb (revision 52525) +++ test/pathname/test_pathname.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/pathname/test_pathname.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require 'test/unit' require 'pathname' Index: test/test_pp.rb =================================================================== --- test/test_pp.rb (revision 52525) +++ test/test_pp.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/test_pp.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require 'pp' require 'delegate' Index: test/open-uri/test_open-uri.rb =================================================================== --- test/open-uri/test_open-uri.rb (revision 52525) +++ test/open-uri/test_open-uri.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/open-uri/test_open-uri.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require 'test/unit' require 'open-uri' require 'webrick' Index: test/open-uri/test_ssl.rb =================================================================== --- test/open-uri/test_ssl.rb (revision 52525) +++ test/open-uri/test_ssl.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/open-uri/test_ssl.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require 'test/unit' require 'open-uri' require 'stringio' Index: test/net/ftp/test_mlsx_entry.rb =================================================================== --- test/net/ftp/test_mlsx_entry.rb (revision 52525) +++ test/net/ftp/test_mlsx_entry.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/net/ftp/test_mlsx_entry.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require "net/ftp" require "test/unit" Index: test/net/ftp/test_buffered_socket.rb =================================================================== --- test/net/ftp/test_buffered_socket.rb (revision 52525) +++ test/net/ftp/test_buffered_socket.rb (revision 52526) @@ -1,5 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/net/ftp/test_buffered_socket.rb#L1 -# -# -*- frozen_string_literal: true -*- +# frozen_string_literal: true require "net/ftp" require "test/unit" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/