summaryrefslogtreecommitdiff
path: root/lib/net/http
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-16 05:07:31 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-16 05:07:31 +0000
commit3e92b635fb5422207b7bbdc924e292e51e21f040 ()
tree584f90b868188077c435bf144e15e66540a73acd /lib/net/http
parentf6f7073e125ff903b77b8cb982a7417d96d51902 (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.rb1
-rw-r--r--lib/net/http/exceptions.rb1
-rw-r--r--lib/net/http/generic_request.rb1
-rw-r--r--lib/net/http/header.rb1
-rw-r--r--lib/net/http/proxy_delta.rb1
-rw-r--r--lib/net/http/request.rb1
-rw-r--r--lib/net/http/requests.rb1
-rw-r--r--lib/net/http/response.rb1
-rw-r--r--lib/net/http/responses.rb1
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