bungie_client 2.1.1.1 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +0 -0
- data/.travis.yml +0 -0
- data/CHANGELOG.md +4 -0
- data/CODE_OF_CONDUCT.md +0 -0
- data/Gemfile +0 -0
- data/LICENSE.txt +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/bin/console +0 -0
- data/bin/setup +0 -0
- data/bungie_client.gemspec +0 -0
- data/lib/bungie_client.rb +0 -0
- data/lib/bungie_client/client.rb +4 -2
- data/lib/bungie_client/service.rb +0 -0
- data/lib/bungie_client/services.yml +0 -0
- data/lib/bungie_client/version.rb +1 -1
- data/lib/bungie_client/wrapper.rb +0 -0
- data/lib/tasks/parse_services.rake +0 -0
- data/lib/underscore.rb +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1fe3259811a7f67c6967698ac4237632bc32c0c5
|
4
|
+
data.tar.gz: 075c1615af92d3339214ee708bff379612d210d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d99a3bb1c940b5591358c561654226f490f3ae8af2d0af0682cb18e6e4031dc157255f693712e26ac4e240fd149248a260778c631296a581f551886409f77db
|
7
|
+
data.tar.gz: b2f2d463b4dbe4ef120dee99c74bba1fef34abed78b45d9e4398fa6fb79cb13348f73e49d20d7114f08f62dbfb7d327092f46023c90a61a6e5fcdb9e9444bec3
|
data/.gitignore
CHANGED
File without changes
|
data/.travis.yml
CHANGED
File without changes
|
data/CHANGELOG.md
CHANGED
data/CODE_OF_CONDUCT.md
CHANGED
File without changes
|
data/Gemfile
CHANGED
File without changes
|
data/LICENSE.txt
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/Rakefile
CHANGED
File without changes
|
data/bin/console
CHANGED
File without changes
|
data/bin/setup
CHANGED
File without changes
|
data/bungie_client.gemspec
CHANGED
File without changes
|
data/lib/bungie_client.rb
CHANGED
File without changes
|
data/lib/bungie_client/client.rb
CHANGED
@@ -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
|
File without changes
|
File without changes
|
data/lib/underscore.rb
CHANGED
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.
|
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
|
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.
|
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).
|