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 () | |
tree | 584f90b868188077c435bf144e15e66540a73acd /lib/net/http | |
parent | f6f7073e125ff903b77b8cb982a7417d96d51902 (diff) |
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
-rw-r--r-- | lib/net/http/backward.rb | 1 | ||||
-rw-r--r-- | lib/net/http/exceptions.rb | 1 | ||||
-rw-r--r-- | lib/net/http/generic_request.rb | 1 | ||||
-rw-r--r-- | lib/net/http/header.rb | 1 | ||||
-rw-r--r-- | lib/net/http/proxy_delta.rb | 1 | ||||
-rw-r--r-- | lib/net/http/request.rb | 1 | ||||
-rw-r--r-- | lib/net/http/requests.rb | 1 | ||||
-rw-r--r-- | lib/net/http/response.rb | 1 | ||||
-rw-r--r-- | lib/net/http/responses.rb | 1 |
9 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,4 @@ # for backward compatibility # :enddoc: @@ -1,3 +1,4 @@ # Net::HTTP exception class. # You cannot use Net::HTTPExceptions directly; instead, you must use # its subclasses. @@ -1,3 +1,4 @@ # HTTPGenericRequest is the parent of the HTTPRequest class. # Do not use this directly; use a subclass of HTTPRequest. # @@ -1,3 +1,4 @@ # The HTTPHeader module defines methods for reading and writing # HTTP headers. # @@ -1,3 +1,4 @@ module Net::HTTP::ProxyDelta #:nodoc: private @@ -1,3 +1,4 @@ # HTTP request class. # This class wraps together the request header and the request path. # You cannot use this class directly. Instead, you should use one of its @@ -1,3 +1,4 @@ # # HTTP/1.1 methods --- RFC2616 # @@ -1,3 +1,4 @@ # HTTP response class. # # This class wraps together the response header and the response body (the @@ -1,3 +1,4 @@ # :stopdoc: class Net::HTTPUnknownResponse < Net::HTTPResponse HAS_BODY = true |