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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 11d3adf68535e8a3678cfbad27f68c9c5770c045
4
- data.tar.gz: 8dacd80cbc3aae33cab866263ae425c7bca2fc78
3
+ metadata.gz: 823765dcee8e3fa85b0e8096f2e997c77cad2ae8
4
+ data.tar.gz: dc1c4f855db3fbc5f5992f5687856fec9f9dd634
5
5
  SHA512:
6
- metadata.gz: e410f560d4653345388bcd4bcfbafd33eadadaef60966248c2a8ae7ce263231dc2839fe3954a45ba90a5e346cceb25e8aadae9a8d953f299ddaada3f57927297
7
- data.tar.gz: 10f08d46580355a59ee47f0a1b3acbd6a175a6c350c74f8528c5855b3b0115410d9dafc031284dcdcaafc9b00f93979ea3360fcdd189760420fb3eed670d27bc
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 could require this in a thread causing deadlock, load it first!
4
- require 'http/cookie_jar/hash_store'
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
 
@@ -1,4 +1,4 @@
1
1
 
2
2
  module RestCore
3
- VERSION = '3.5.9'
3
+ VERSION = '3.5.91'
4
4
  end
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: rest-core 3.5.9 ruby lib
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.9"
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"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rest-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.9
4
+ version: 3.5.91
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lin Jen-Shin (godfat)