bungie_client 2.1.2 → 2.1.2.1
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/CHANGELOG.md +8 -2
- data/lib/bungie_client/client.rb +2 -4
- data/lib/bungie_client/version.rb +1 -1
- 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: 851207be796c415e6fa8ed192403ea7e49408e2d
|
|
4
|
+
data.tar.gz: 775fb8b8253cfaf97f7ecd7a41c75676c494e2f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9c75608b9725bcbf82c588f6490caf082ed3a252361cd02bda5fd2b7216f2b95d6da56629e88815eff01f7f1391f846e62caf29b04a1d9dd81009228af9a91b
|
|
7
|
+
data.tar.gz: 5d3ced710095d04152499232831db7aacf13c90913f958f4de34b8466e7fec576e725ebeb606364d6e9187d6dbc6b0b8f41dd6d7b1151d492d7bfdf2a94211f8
|
data/CHANGELOG.md
CHANGED
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/
|
|
4
|
+
BUNGIE_URI = 'https://www.bungie.net/Platform'
|
|
5
5
|
|
|
6
6
|
# Format answer from Bungie
|
|
7
7
|
#
|
|
@@ -52,9 +52,7 @@ class BungieClient::Client
|
|
|
52
52
|
|
|
53
53
|
builder.use FaradayMiddleware::FollowRedirects, :limit => 5
|
|
54
54
|
|
|
55
|
-
builder.adapter :httpclient
|
|
56
|
-
http.allow_dot_domain_cookie = true
|
|
57
|
-
end
|
|
55
|
+
builder.adapter :httpclient
|
|
58
56
|
end
|
|
59
57
|
end
|
|
60
58
|
|