bungie_client 2.1.1.1 → 2.1.2

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: c45a1055400d6747016468312440d2d3d04c3592
4
- data.tar.gz: 7cb2b6d899dec9da2f33338769e087d5c7484f70
3
+ metadata.gz: 1fe3259811a7f67c6967698ac4237632bc32c0c5
4
+ data.tar.gz: 075c1615af92d3339214ee708bff379612d210d6
5
5
  SHA512:
6
- metadata.gz: 5fafe84180cfcd7118e7274a651e86dfd888dee57ed0f0e97b93cdb01bfa196acc3a766b00cf2ca8f345ab091a42edc892150b8dc456edcc8a8a58f8b1406ccd
7
- data.tar.gz: 0a8b97d92116e0ec8eacd4160e1a67c195ef618a488d8a0bdf244aeea6668aef3c18a9c4e807629721f9aeb37bd5d838a90c0ee3cd7ccec85562a651cf08b988
6
+ metadata.gz: 7d99a3bb1c940b5591358c561654226f490f3ae8af2d0af0682cb18e6e4031dc157255f693712e26ac4e240fd149248a260778c631296a581f551886409f77db
7
+ data.tar.gz: b2f2d463b4dbe4ef120dee99c74bba1fef34abed78b45d9e4398fa6fb79cb13348f73e49d20d7114f08f62dbfb7d327092f46023c90a61a6e5fcdb9e9444bec3
data/.gitignore CHANGED
File without changes
File without changes
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.1.2 (2017-09-06)
4
+
5
+ * Allow "Cookie#dot_domain" for `httpclient`.
6
+
3
7
  ## 2.1.1 (2017-06-30)
4
8
 
5
9
  ### Changes
File without changes
data/Gemfile CHANGED
File without changes
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
File without changes
data/bin/setup CHANGED
File without changes
File without changes
File without changes
@@ -1,7 +1,7 @@
1
1
  # Class Client for GET/POST requests to Bungie.
2
2
  # For specific HTTP operations you can use @conn [Faraday].
3
3
  class BungieClient::Client
4
- BUNGIE_URI = 'https://www.bungie.net/Platform'
4
+ BUNGIE_URI = 'https://www.bungie.net/d1/Platform'
5
5
 
6
6
  # Format answer from Bungie
7
7
  #
@@ -52,7 +52,9 @@ class BungieClient::Client
52
52
 
53
53
  builder.use FaradayMiddleware::FollowRedirects, :limit => 5
54
54
 
55
- builder.adapter :httpclient
55
+ builder.adapter :httpclient do |http|
56
+ http.allow_dot_domain_cookie = true
57
+ end
56
58
  end
57
59
  end
58
60
 
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module BungieClient
2
- VERSION = '2.1.1.1'
2
+ VERSION = '2.1.2'
3
3
  end
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bungie_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Ruban
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-06-29 00:00:00.000000000 Z
11
+ date: 2017-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  version: '0'
184
184
  requirements: []
185
185
  rubyforge_project:
186
- rubygems_version: 2.6.8
186
+ rubygems_version: 2.6.12
187
187
  signing_key:
188
188
  specification_version: 4
189
189
  summary: This gem makes possible to use Bungie API (and Destiny API too).