http 1.0.0.pre5 → 1.0.0.pre6
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/CHANGES.md +4 -0
- data/README.md +3 -2
- data/lib/http.rb +0 -2
- data/lib/http/version.rb +1 -1
- data/logo.png +0 -0
- data/spec/spec_helper.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc13432b88a2ba986f5679605f6e012ffe08e097
|
|
4
|
+
data.tar.gz: c7376b22caf6eecbd9d57b11a20f352afbfe75ab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0380602168ba0530d7559fcee632ae9bd775ec1501862421f888ab9c1b4892d94c74dfa5b3e19351f33982590ca6951e6476edb7fc88138c483d61a45880205f
|
|
7
|
+
data.tar.gz: 8d5a77c0556ada7a935259278e91bd7a93079b8f734d6607e4eb3ba563d8bc7cf46f365d20a0bbc1cd606e5ed2410bb63feed313a1b9ea5ecc624b668e3f04eb
|
data/CHANGES.md
CHANGED
|
@@ -43,6 +43,10 @@
|
|
|
43
43
|
This avoids a pathological case in Nagle's algorithm.
|
|
44
44
|
([@tarcieri])
|
|
45
45
|
|
|
46
|
+
* [#281](https://github.com/httprb/http/pull/281)
|
|
47
|
+
Remove legacy 'Http' constant alias to 'HTTP'.
|
|
48
|
+
([@tarcieri])
|
|
49
|
+
|
|
46
50
|
## 0.9.8 (2015-09-29)
|
|
47
51
|
|
|
48
52
|
* [#260](https://github.com/httprb/http/pull/258):
|
data/README.md
CHANGED
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
## About
|
|
10
10
|
|
|
11
|
-
http.rb is an easy-to-use client library for making requests
|
|
12
|
-
a simple method chaining system for building requests, similar to
|
|
11
|
+
HTTP (The Gem! a.k.a. http.rb) is an easy-to-use client library for making requests
|
|
12
|
+
from Ruby. It uses a simple method chaining system for building requests, similar to
|
|
13
|
+
Python's [Requests].
|
|
13
14
|
|
|
14
15
|
Under the hood, http.rb uses [http_parser.rb], a fast HTTP parsing native
|
|
15
16
|
extension based on the Node.js parser and a Java port thereof. This library
|
data/lib/http.rb
CHANGED
data/lib/http/version.rb
CHANGED
data/logo.png
CHANGED
|
Binary file
|
data/spec/spec_helper.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
require "simplecov"
|
|
4
4
|
require "coveralls"
|
|
5
5
|
|
|
6
|
-
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
|
6
|
+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
|
|
7
7
|
SimpleCov::Formatter::HTMLFormatter,
|
|
8
8
|
Coveralls::SimpleCov::Formatter
|
|
9
|
-
]
|
|
9
|
+
])
|
|
10
10
|
|
|
11
11
|
SimpleCov.start do
|
|
12
12
|
add_filter "/spec/"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: http
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.
|
|
4
|
+
version: 1.0.0.pre6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tony Arcieri
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2015-12-
|
|
14
|
+
date: 2015-12-21 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: http_parser.rb
|