clashinator 0.1.2 → 0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 237e6890b9e9d6645c7908ea43fee68831d88a9c
4
- data.tar.gz: 539ec575c05a83d7bbadd1dc00eb3e4f966ee5d4
3
+ metadata.gz: f952c87643b9fda960895499fa69677637a18820
4
+ data.tar.gz: 0ddb384307d5bca6c4a207f8a3466cbe5dd2627c
5
5
  SHA512:
6
- metadata.gz: c926386fbce2b6cc200799ce764eb42557aa8741ed7d5a51a23e600b457f3bcfa038702a7d8552db74d178c56a07600804f993db86c15e0cb8fe5a25dc650607
7
- data.tar.gz: 44fa2ba2b94ba03e9b10cd00d3b6ca6426838f192e5735f25ff98e2f3847ab8d0a9c3ceb90bb38b71882e07c615395847af86a58651e52a75830a6f06da0ff8d
6
+ metadata.gz: 8695eb545d87f26eb93b1ac6ee627e0bcfd71d1529d12897ba9f5911a334f71fd0bc6cc3635f6f9d7923083f9918e38ecde2e6cb5461effd10eecb5764b53e9d
7
+ data.tar.gz: 0e0075d75f12d543e52d2b8f2eb09e35f7e641f43a8001362baa65a90d7bac5fec04b4939d7b47fae87712adc6722a6f0a87280a79733d91f8880fd9f3d6024f
data/README.md CHANGED
@@ -36,11 +36,23 @@ client.get_clan_info({clan_tag: '#2U2CYPQ8'})
36
36
 
37
37
  client.list_clan_members({clan_tag: '#2U2CYPQ8'})
38
38
 
39
+ client.list_war_log({clan_tag: '#2U2CYPQ8'})
40
+
39
41
  client.list_locations()
40
42
 
41
43
  client.get_location_info({location_id: 32000254})
42
44
 
43
- client.get_ranking_for_location({location_id: 32000254, ranking_id: 'clans'})
45
+ client.get_clan_ranking_for_location({location_id: 32000254})
46
+
47
+ client.get_player_ranking_for_location({location_id: 32000254})
48
+
49
+ client.list_leagues()
50
+
51
+ client.get_league({league_id: 29000022})
52
+
53
+ client.get_league_seasons({league_id: 29000022})
54
+
55
+ client.get_league_season_rankings({league_id: 29000022, season_id: '2016-04'})
44
56
  ```
45
57
 
46
58
  ## Development
@@ -5,9 +5,15 @@ module Clashinator
5
5
  find_clan: '/v1/clans',
6
6
  get_clan_info: '/v1/clans/{clan_tag}',
7
7
  list_clan_members: '/v1/clans/{clan_tag}/members',
8
+ list_war_log: '/v1/clans/{clan_tag}/warlog',
8
9
  list_locations: '/v1/locations',
9
10
  get_location_info: '/v1/locations/{location_id}',
10
- get_ranking_for_location: '/v1/locations/{location_id}/rankings/{ranking_id}'
11
+ get_clan_ranking_for_location: '/v1/locations/{location_id}/rankings/clans',
12
+ get_player_ranking_for_location: '/v1/locations/{location_id}/rankings/players',
13
+ list_leagues: '/v1/leagues',
14
+ get_league: '/v1/leagues/{league_id}',
15
+ get_league_seasons: '/v1/leagues/{league_id}/seasons',
16
+ get_league_season_rankings: '/v1/leagues/{league_id}/seasons/{season_id}'
11
17
  }
12
18
 
13
19
  attr_reader :token
@@ -28,9 +34,9 @@ module Clashinator
28
34
  connection_params = build_connection_params(method_name, params)
29
35
  response = connection.get(
30
36
  connection_params[:url],
31
- connection_params[:query_params]
37
+ connection_params[:query_params].empty? ? {} : connection_params[:query_params]
32
38
  )
33
- if response.status == 200
39
+ if response.success?
34
40
  JSON.parse(response.body.to_json)
35
41
  else
36
42
  raise Exceptions::ResponseError.new(response),
@@ -7,14 +7,14 @@ module Clashinator
7
7
  @response = response
8
8
  end
9
9
 
10
- #def to_s
11
- # super +
12
- # format(' (%s)', data.map { |k, v| %(#{k}: "#{v}") }.join(', '))
13
- #end
10
+ def to_s
11
+ super +
12
+ format(' (%s)', data.map { |k, v| %(#{k}: "#{v}") }.join(', '))
13
+ end
14
14
 
15
- #def error_code
16
- # data[:error_code] || data['error_code']
17
- #end
15
+ def error_code
16
+ data[:error_code] || data['error_code']
17
+ end
18
18
 
19
19
  private
20
20
 
@@ -1,3 +1,3 @@
1
1
  module Clashinator
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clashinator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: '0.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leonardo Cabeza
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-03 00:00:00.000000000 Z
11
+ date: 2016-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler