diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-01-06 04:55:05 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-01-06 04:55:05 +0000 |
commit | c4e5930f9dacc2dbb2771757adbfa801718ab3f8 (patch) | |
tree | 879c85765feaf245e44d65db928d97f633aa05b9 /lib | |
parent | 6776e0bc99abfbdb9e4c406c447942e971af37ff (diff) | |
download | bundler-c4e5930f9dacc2dbb2771757adbfa801718ab3f8.tar.gz |
Specify frozen_string_literal: true
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61633 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/net/http/responses.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/http/responses.rb b/lib/net/http/responses.rb index c4259e1a02..d57348b82f 100644 --- a/lib/net/http/responses.rb +++ b/lib/net/http/responses.rb @@ -1,4 +1,4 @@ -# frozen_string_literal: false +# frozen_string_literal: true # :stopdoc: # https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml class Net::HTTPUnknownResponse < Net::HTTPResponse |