Skip to content

Commit

Permalink
* lib/open-uri.rb: Remove indicator for "frozen_string_literal: true".
Browse files Browse the repository at this point in the history
* 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.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
akr committed Nov 10, 2015
1 parent a01b645 commit 68ebbbf
Show file tree
Hide file tree
Showing 17 changed files with 50 additions and 30 deletions.
34 changes: 34 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
Tue Nov 10 20:35:12 2015 Tanaka Akira <[email protected]>

* 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 <[email protected]>

* defs/id.def, parse.y: Switch internal token name to reflect
Expand Down
3 changes: 1 addition & 2 deletions ext/pathname/lib/pathname.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true
#
# = pathname.rb
#
Expand Down
3 changes: 1 addition & 2 deletions lib/open-uri.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true
require 'uri'
require 'stringio'
require 'time'
Expand Down
3 changes: 1 addition & 2 deletions lib/pp.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true

require 'prettyprint'

Expand Down
3 changes: 1 addition & 2 deletions lib/prettyprint.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- 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.
Expand Down
3 changes: 1 addition & 2 deletions lib/resolv.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true

require 'socket'
require 'timeout'
Expand Down
2 changes: 1 addition & 1 deletion lib/securerandom.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: us-ascii -*-
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true
begin
require 'openssl'
rescue LoadError
Expand Down
3 changes: 1 addition & 2 deletions lib/tmpdir.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true
#
# tmpdir - retrieve temporary directory path
#
Expand Down
2 changes: 1 addition & 1 deletion lib/unicode_normalize/tables.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# coding: us-ascii
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true

# automatically generated by template/unicode_norm_gen.tmpl

Expand Down
3 changes: 1 addition & 2 deletions test/net/ftp/test_buffered_socket.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true

require "net/ftp"
require "test/unit"
Expand Down
3 changes: 1 addition & 2 deletions test/net/ftp/test_mlsx_entry.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true

require "net/ftp"
require "test/unit"
Expand Down
3 changes: 1 addition & 2 deletions test/open-uri/test_open-uri.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true
require 'test/unit'
require 'open-uri'
require 'webrick'
Expand Down
3 changes: 1 addition & 2 deletions test/open-uri/test_ssl.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true
require 'test/unit'
require 'open-uri'
require 'stringio'
Expand Down
3 changes: 1 addition & 2 deletions test/pathname/test_pathname.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true

require 'test/unit'
require 'pathname'
Expand Down
3 changes: 1 addition & 2 deletions test/test_pp.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true

require 'pp'
require 'delegate'
Expand Down
3 changes: 1 addition & 2 deletions test/test_prettyprint.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true

require 'prettyprint'
require 'test/unit'
Expand Down
3 changes: 1 addition & 2 deletions tool/transcode-tblgen.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# -*- frozen_string_literal: true -*-
# frozen_string_literal: true

require 'optparse'
require 'erb'
Expand Down

0 comments on commit 68ebbbf

Please sign in to comment.