playlyfe_client 1.1.5 → 1.1.6
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/lib/playlyfe_client/v2/connection.rb +2 -2
- data/lib/playlyfe_client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd75955605ad347f537322160d8299df8781821b
|
|
4
|
+
data.tar.gz: e71abe3484f0079f362fcbc6f6e24af16715aeac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3588008044c1b542fcd1f52bba20efcf752fa2b05f6129969fb26f8aeb232de67b7f879fa9ae17a16cdf46ae0da7a644ecfeed877451813863df01d8c9d28086
|
|
7
|
+
data.tar.gz: 504d222addffb292970fd041f77da6e4bca4b1051f829afbf3ed094ccee3f1077f9908687a26f6a6754ab445d7df7519afc2b672059cec9c07356fbc02875183
|
|
@@ -58,7 +58,7 @@ module PlaylyfeClient
|
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
def get_full_teams_hash
|
|
61
|
-
skip_errors_with({"data" => [], "total" => 0}) { get("/admin/teams") }
|
|
61
|
+
skip_errors_with({"data" => [], "total" => 0}) { get("/admin/teams", { limit: 1_000_000 }) }
|
|
62
62
|
end
|
|
63
63
|
|
|
64
64
|
def get_team_hash_array
|
|
@@ -82,7 +82,7 @@ module PlaylyfeClient
|
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
def get_full_leaderboard_hash(leaderboard_id, cycle="alltime", player_id=dummy_player_id)
|
|
85
|
-
skip_errors_with({"data" => [], "total" => 0}) { get("/runtime/leaderboards/#{leaderboard_id}", {cycle: cycle, player_id: player_id}) }
|
|
85
|
+
skip_errors_with({"data" => [], "total" => 0}) { get("/runtime/leaderboards/#{leaderboard_id}", {cycle: cycle, player_id: player_id, limit: 1_000_000 }) }
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
def get_full_all_actions_array(player_id=dummy_player_id)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: playlyfe_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Foton
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-07-
|
|
11
|
+
date: 2016-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|