net-http 0.4.1 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.document +4 -0
- data/{LICENSE.txt → BSDL} +3 -3
- data/COPYING +56 -0
- data/README.md +2 -1
- data/lib/net/http/exceptions.rb +2 -1
- data/lib/net/http/generic_request.rb +30 -15
- data/lib/net/http/header.rb +9 -5
- data/lib/net/http/requests.rb +20 -1
- data/lib/net/http/response.rb +2 -1
- data/lib/net/http/responses.rb +70 -2
- data/lib/net/http.rb +189 -77
- metadata +10 -16
- data/Gemfile +0 -8
- data/Rakefile +0 -10
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/lib/net/http/backward.rb +0 -40
- data/net-http.gemspec +0 -39
data/lib/net/http/backward.rb
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
# for backward compatibility
|
|
3
|
-
|
|
4
|
-
# :enddoc:
|
|
5
|
-
|
|
6
|
-
class Net::HTTP
|
|
7
|
-
ProxyMod = ProxyDelta
|
|
8
|
-
deprecate_constant :ProxyMod
|
|
9
|
-
end
|
|
10
|
-
|
|
11
|
-
module Net::NetPrivate
|
|
12
|
-
HTTPRequest = ::Net::HTTPRequest
|
|
13
|
-
deprecate_constant :HTTPRequest
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
module Net
|
|
17
|
-
HTTPSession = HTTP
|
|
18
|
-
|
|
19
|
-
HTTPInformationCode = HTTPInformation
|
|
20
|
-
HTTPSuccessCode = HTTPSuccess
|
|
21
|
-
HTTPRedirectionCode = HTTPRedirection
|
|
22
|
-
HTTPRetriableCode = HTTPRedirection
|
|
23
|
-
HTTPClientErrorCode = HTTPClientError
|
|
24
|
-
HTTPFatalErrorCode = HTTPClientError
|
|
25
|
-
HTTPServerErrorCode = HTTPServerError
|
|
26
|
-
HTTPResponseReceiver = HTTPResponse
|
|
27
|
-
|
|
28
|
-
HTTPResponceReceiver = HTTPResponse # Typo since 2001
|
|
29
|
-
|
|
30
|
-
deprecate_constant :HTTPSession,
|
|
31
|
-
:HTTPInformationCode,
|
|
32
|
-
:HTTPSuccessCode,
|
|
33
|
-
:HTTPRedirectionCode,
|
|
34
|
-
:HTTPRetriableCode,
|
|
35
|
-
:HTTPClientErrorCode,
|
|
36
|
-
:HTTPFatalErrorCode,
|
|
37
|
-
:HTTPServerErrorCode,
|
|
38
|
-
:HTTPResponseReceiver,
|
|
39
|
-
:HTTPResponceReceiver
|
|
40
|
-
end
|
data/net-http.gemspec
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
name = File.basename(__FILE__, ".gemspec")
|
|
4
|
-
version = ["lib", Array.new(name.count("-")+1, "..").join("/")].find do |dir|
|
|
5
|
-
file = File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")
|
|
6
|
-
begin
|
|
7
|
-
break File.foreach(file, mode: "rb") do |line|
|
|
8
|
-
/^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
|
|
9
|
-
end
|
|
10
|
-
rescue SystemCallError
|
|
11
|
-
next
|
|
12
|
-
end
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
Gem::Specification.new do |spec|
|
|
16
|
-
spec.name = name
|
|
17
|
-
spec.version = version
|
|
18
|
-
spec.authors = ["NARUSE, Yui"]
|
|
19
|
-
spec.email = ["naruse@airemix.jp"]
|
|
20
|
-
|
|
21
|
-
spec.summary = %q{HTTP client api for Ruby.}
|
|
22
|
-
spec.description = %q{HTTP client api for Ruby.}
|
|
23
|
-
spec.homepage = "https://github.com/ruby/net-http"
|
|
24
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
|
|
25
|
-
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
|
26
|
-
|
|
27
|
-
spec.metadata["homepage_uri"] = spec.homepage
|
|
28
|
-
spec.metadata["source_code_uri"] = spec.homepage
|
|
29
|
-
|
|
30
|
-
# Specify which files should be added to the gem when it is released.
|
|
31
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
32
|
-
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
33
|
-
`git ls-files -z 2>#{IO::NULL}`.split("\x0").reject { |f| f.match(%r{\A(?:(?:test|spec|features)/|\.git)}) }
|
|
34
|
-
end
|
|
35
|
-
spec.bindir = "exe"
|
|
36
|
-
spec.require_paths = ["lib"]
|
|
37
|
-
|
|
38
|
-
spec.add_dependency "uri"
|
|
39
|
-
end
|