rest-core 3.5.9 → 3.5.91
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 +8 -0
- data/lib/rest-core/engine/http-client.rb +3 -2
- data/lib/rest-core/version.rb +1 -1
- data/rest-core.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 823765dcee8e3fa85b0e8096f2e997c77cad2ae8
|
4
|
+
data.tar.gz: dc1c4f855db3fbc5f5992f5687856fec9f9dd634
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e70448f54bc1c88cf4f0f23aabf33047e1a1933afaf4bd7ced8834a60bff534bcda3c8e22f4767dd7ba3c1fa4d2d3b4b264b8a2fae76fcb1bede0560a1ef96ab
|
7
|
+
data.tar.gz: 2eb633858286455a07c511caddb43e235c5721d694e2b2b6fd9237066e1fc225b14796f41484bc2c02d857d6cf2a86c3225ba2c8cf11bfd0e2bec861ef378fdf
|
data/CHANGES.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# CHANGES
|
2
2
|
|
3
|
+
## rest-core 3.5.91 -- 2015-12-11
|
4
|
+
|
5
|
+
### Bugs fixed
|
6
|
+
|
7
|
+
* Instead of forcing to load `http/cookie_jar/hash_store.rb`, which is only
|
8
|
+
available when _http-cookie_ is available, we just initialize httpclient
|
9
|
+
and throw it away. Hopefully this would be more compatible between versions.
|
10
|
+
|
3
11
|
## rest-core 3.5.9 -- 2015-12-11
|
4
12
|
|
5
13
|
### Bugs fixed
|
@@ -1,7 +1,8 @@
|
|
1
1
|
|
2
2
|
require 'httpclient'
|
3
|
-
# httpclient
|
4
|
-
require
|
3
|
+
# httpclient would require something (cookie manager) while initialized,
|
4
|
+
# so we should try to force requiring them to avoid require deadlock!
|
5
|
+
HTTPClient.new
|
5
6
|
|
6
7
|
require 'rest-core/engine'
|
7
8
|
|
data/lib/rest-core/version.rb
CHANGED
data/rest-core.gemspec
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: rest-core 3.5.
|
2
|
+
# stub: rest-core 3.5.91 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "rest-core"
|
6
|
-
s.version = "3.5.
|
6
|
+
s.version = "3.5.91"
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib"]
|