diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-16 05:07:31 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-16 05:07:31 +0000 |
commit | 3e92b635fb5422207b7bbdc924e292e51e21f040 (patch) | |
tree | 584f90b868188077c435bf144e15e66540a73acd /lib/rdoc/ri | |
parent | f6f7073e125ff903b77b8cb982a7417d96d51902 (diff) | |
download | bundler-3e92b635fb5422207b7bbdc924e292e51e21f040.tar.gz |
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
Diffstat (limited to 'lib/rdoc/ri')
-rw-r--r-- | lib/rdoc/ri/driver.rb | 1 | ||||
-rw-r--r-- | lib/rdoc/ri/formatter.rb | 1 | ||||
-rw-r--r-- | lib/rdoc/ri/paths.rb | 1 | ||||
-rw-r--r-- | lib/rdoc/ri/store.rb | 1 | ||||
-rw-r--r-- | lib/rdoc/ri/task.rb | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/lib/rdoc/ri/driver.rb b/lib/rdoc/ri/driver.rb index 39064c1384..e571ae82ac 100644 --- a/lib/rdoc/ri/driver.rb +++ b/lib/rdoc/ri/driver.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'abbrev' require 'optparse' diff --git a/lib/rdoc/ri/formatter.rb b/lib/rdoc/ri/formatter.rb index 84d37a9d31..d0c85dbe6b 100644 --- a/lib/rdoc/ri/formatter.rb +++ b/lib/rdoc/ri/formatter.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false ## # For RubyGems backwards compatibility diff --git a/lib/rdoc/ri/paths.rb b/lib/rdoc/ri/paths.rb index 970cb91461..41529a3e0d 100644 --- a/lib/rdoc/ri/paths.rb +++ b/lib/rdoc/ri/paths.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'rdoc/ri' ## diff --git a/lib/rdoc/ri/store.rb b/lib/rdoc/ri/store.rb index 9fa9bbb03c..66e234f521 100644 --- a/lib/rdoc/ri/store.rb +++ b/lib/rdoc/ri/store.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module RDoc::RI Store = RDoc::Store # :nodoc: diff --git a/lib/rdoc/ri/task.rb b/lib/rdoc/ri/task.rb index e545d4ac1e..d45f0c664c 100644 --- a/lib/rdoc/ri/task.rb +++ b/lib/rdoc/ri/task.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'rubygems' begin gem 'rdoc' |