captainteemo 0.0.2 → 0.0.3

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.
data/lib/captainteemo.rb CHANGED
@@ -10,5 +10,5 @@ end
10
10
  end
11
11
 
12
12
  module LoL
13
- VERSION = "0.0.2"
13
+ VERSION = "0.0.3"
14
14
  end
@@ -18,52 +18,50 @@ module LoL
18
18
  #Returns observer metadata and information if
19
19
  #String Summoner on String Platform is playing a valid game.
20
20
  def self.ingame(platform, name, conditions={})
21
- search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name.to_s}/ingame")
21
+ search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name}/ingame")
22
22
  search.fetch_resource
23
23
  end
24
24
 
25
25
  #Returns last 10 matches (order is random) for String Summoner on String Platform.
26
26
  def self.recent_games(platform, name, conditions={})
27
- search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name.to_s}/recent_games")
27
+ search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name}/recent_games")
28
28
  search.fetch_resource
29
29
  end
30
30
 
31
31
  #Returns lifetime influence point gains for String Summoner on String Platform.
32
32
  def self.influence_points(platform, name, conditions={})
33
- search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name.to_s}/influence_points")
34
- search.fetch_resource['data']
33
+ search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name}/influence_points")
34
+ search.fetch_resource
35
35
  end
36
36
 
37
37
  #Returns runepages for String Summoner on String Platform.
38
38
  def self.runes(platform, name, conditions={})
39
- search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name.to_s}/runes")
40
- search.fetch_resource['data']
39
+ search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name}/runes")
40
+ search.fetch_resource
41
41
  end
42
42
 
43
43
  #Returns mastery pages for String Summoner on String Platform.
44
44
  def self.mastery(platform, name, conditions={})
45
- search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name.to_s}/mastery")
46
- search.fetch_resource['data']
45
+ search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name}/mastery")
46
+ search.fetch_resource
47
47
  end
48
48
 
49
49
  #Returns Season 3 Leagues info (internally Pojo).
50
50
  def self.leagues(platform, name, conditions={})
51
- search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name.to_s}/leagues")
52
- search.fetch_resource['data']
51
+ search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name}/leagues")
52
+ search.fetch_resource
53
53
  end
54
54
 
55
55
  #Returns all teams (and team match history) player is a member of.
56
56
  def self.teams(platform, name, conditions={})
57
- search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name.to_s}/teams")
58
- search.fetch_resource['data']
57
+ search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name}/teams")
58
+ search.fetch_resource
59
59
  end
60
60
 
61
61
  #Returns player commendation (internally Kudos).
62
62
  def self.honor(platform, name, conditions={})
63
- search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name.to_s}/honor")
64
- search.fetch_resource['data']
63
+ search = LoL::Search.new("/#{self.endpoints[:singular]}/#{platform.to_s}/#{name}/honor")
64
+ search.fetch_resource
65
65
  end
66
-
67
-
68
66
  end
69
67
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: captainteemo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-24 00:00:00.000000000 Z
12
+ date: 2013-05-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty