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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ee1ca0916164aded3b9b12560622a11207255cd
4
- data.tar.gz: 441afd2c8d51450678c3520459f9d21007a306cf
3
+ metadata.gz: dc13432b88a2ba986f5679605f6e012ffe08e097
4
+ data.tar.gz: c7376b22caf6eecbd9d57b11a20f352afbfe75ab
5
5
  SHA512:
6
- metadata.gz: f22db552865424b796f4cf2c96e4b285befee9397825a8cfc8cf389d0c6f98adb0f701dd46cf60449f017f54b76d6196cd5f4c9df547b629fedd3ab7bfb56275
7
- data.tar.gz: 38b12a78b17f7fa5b97a0f89a25e5d44c282895dc73871dd39dc2548d4d2734eb04379ff6738dcf6567b0231cf6afe13084637b1cea662fb61c231aa17b86da2
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 from Ruby. It uses
12
- a simple method chaining system for building requests, similar to Python's [Requests].
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
@@ -23,5 +23,3 @@ module HTTP
23
23
  alias_method :[], :headers
24
24
  end
25
25
  end
26
-
27
- Http = HTTP unless defined?(Http)
@@ -1,3 +1,3 @@
1
1
  module HTTP
2
- VERSION = "1.0.0.pre5".freeze
2
+ VERSION = "1.0.0.pre6".freeze
3
3
  end
data/logo.png CHANGED
Binary file
@@ -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.pre5
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-20 00:00:00.000000000 Z
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