gamertag 1.0.3 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.1.0
4
+
5
+ * Added support for a gamertag's friends via `Gamertag::Friends`. 2 methods on this class, `friends` and
6
+ `online_friends` will return all friends and online friends, respectively.
7
+
3
8
  ## 1.0.3
4
9
 
5
10
  * Escaping user input when creating an URI. Thanks to [lunks](https://github.com/lunks) for the pull request.
@@ -12,7 +17,7 @@
12
17
 
13
18
  * Updates to project organization, code improvements and specs
14
19
  * Add ability to initialize a SimpleProfile from existing JSON data [hypomodern]
15
-
20
+
16
21
  ## 1.0.0
17
22
 
18
23
  * Initial release
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2011 Baris Balic, David Czarnecki
1
+ Copyright (c) 2011-2013 Baris Balic, David Czarnecki
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -2,7 +2,7 @@
2
2
 
3
3
  An interface for accessing your XBOX Live profile and game data.
4
4
 
5
- ## Install
5
+ ## Install
6
6
 
7
7
  ```ruby
8
8
  gem install gamertag
@@ -15,77 +15,92 @@ gem 'gamertag'
15
15
  ```
16
16
 
17
17
  ## Usage
18
- This gem fetches data from two independent sources, which has several implications such as one of the sources not being available, or an increased overhead when you only want to access some of the data. To this end the interface will allow you to access all data, just the profile data or just the played games data.
19
-
20
-
21
- Example: Obtaining your profile and played games. Methods are those available to the simple profile and played games.
22
-
23
- profile = Gamertag::Profile.new('Belial1984')
24
- profile.gamertag
25
- profile.recent_games {|game| game.title }
26
- profile.played_games {|game| game.title }
27
-
28
-
29
- Example: Obtaining your profile and recent games only
30
-
31
- profile = Gamertag::SimpleProfile.new('Belial1984')
32
-
33
- profile.gamertag
34
- profile.profile_link
35
- profile.account_status
36
- profile.gender
37
- profile.is_cheater
38
- profile.online
39
- profile.online_status
40
- profile.reputation
41
- profile.gamerscore
42
- profile.location
43
- profile.motto
44
- profile.name
45
- profile.bio
46
- profile.avatars.small_gamerpic
47
- profile.avatars.large_gamerpic
48
- profile.avatars.body_gamerpic
49
- profile.recent_games.each do |game|
50
- game.title
51
- game.tid # Probably some arbitrary title id
52
- game.marketplace_url
53
- game.compare_url
54
- game.image
55
- game.last_played
56
- game.earned_gamerscore
57
- game.available_gamerscore
58
- game.earned_achievements
59
- game.avilable_achievements
60
- game.percentage_complete
61
- end
62
-
63
- Example: Obtaining your played games only
64
-
65
- played_games = Gamertag::PlayedGames.new('Belial1984')
66
- played_games.each do |game|
67
- game.image
68
- game.last_played
69
- game.earned_gamerscore
70
- game.available_gamerscore
71
- game.earned_achievements
72
- game.available_achievements
73
- game.average_gamerscore
74
- game.relative_gamerscore => :above_average || :below_average || :undefined
75
- end
76
-
18
+
19
+ This gem fetches data from two independent sources, which has several implications such as one of the sources not being available, or an increased overhead when you only want to access some of the data. To this end the interface will allow you to access all data, just the profile data or just the played games data.
20
+
21
+ Example: Obtaining your profile and played games. Methods are those available to the simple profile and played games.
22
+
23
+ ```ruby
24
+ profile = Gamertag::Profile.new('Belial1984')
25
+
26
+ profile.gamertag
27
+ profile.recent_games {|game| game.title }
28
+ profile.played_games {|game| game.title }
29
+ ```
30
+
31
+ Example: Obtaining your profile and recent games only.
32
+
33
+ ```ruby
34
+ profile = Gamertag::SimpleProfile.new('Belial1984')
35
+
36
+ profile.gamertag
37
+ profile.profile_link
38
+ profile.account_status
39
+ profile.gender
40
+ profile.is_cheater
41
+ profile.online
42
+ profile.online_status
43
+ profile.reputation
44
+ profile.gamerscore
45
+ profile.location
46
+ profile.motto
47
+ profile.name
48
+ profile.bio
49
+ profile.avatars.small_gamerpic
50
+ profile.avatars.large_gamerpic
51
+ profile.avatars.body_gamerpic
52
+ profile.recent_games.each do |game|
53
+ game.title
54
+ game.tid # Probably some arbitrary title id
55
+ game.marketplace_url
56
+ game.compare_url
57
+ game.image
58
+ game.last_played
59
+ game.earned_gamerscore
60
+ game.available_gamerscore
61
+ game.earned_achievements
62
+ game.avilable_achievements
63
+ game.percentage_complete
64
+ end
65
+ ```
66
+
67
+ Example: Obtaining your played games only.
68
+
69
+ ```ruby
70
+ played_games = Gamertag::PlayedGames.new('Belial1984')
71
+ played_games.each do |game|
72
+ game.image
73
+ game.last_played
74
+ game.earned_gamerscore
75
+ game.available_gamerscore
76
+ game.earned_achievements
77
+ game.available_achievements
78
+ game.average_gamerscore
79
+ game.relative_gamerscore => :above_average || :below_average || :undefined
80
+ end
81
+ ```
82
+
83
+ Example: Obtaining your friends information.
84
+
85
+ ```ruby
86
+ gamertag = Gamertag::Friends('Belial1984')
87
+ gamertag.friends.each do |friend|
88
+ end
89
+ gamertag.online_friends.each do |online_friend|
90
+ end
91
+ ```
92
+
77
93
  ## Documentation
78
94
 
79
- You can find [online documentation](http://rubydoc.info/github/barisbalic/gamertag/master/frames) that describes the API in more detail.
80
-
95
+ You can find [online documentation](http://rubydoc.info/github/barisbalic/gamertag/) that describes the API in more detail.
96
+
81
97
  ## Note on Patches/Pull Requests
82
98
 
83
99
  * Fork the project.
84
100
  * Make your feature addition or bug fix.
85
101
  * Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
86
102
  * Send me a pull request.
87
-
88
103
 
89
104
  ## Copyright
90
105
 
91
- Copyright (c) 2011-2012 Baris Balic, David Czarnecki.
106
+ Copyright (c) 2011-2013 Baris Balic, David Czarnecki.
@@ -5,6 +5,7 @@ require 'hashie'
5
5
  require 'nokogiri'
6
6
 
7
7
  require 'gamertag/simple_profile'
8
+ require 'gamertag/friends'
8
9
  require 'gamertag/played_games'
9
10
  require 'gamertag/profile'
10
11
  require 'gamertag/version'
@@ -0,0 +1,25 @@
1
+ require 'cgi'
2
+ module Gamertag
3
+ class Friends
4
+ def initialize(gamertag)
5
+ @friends = fetch(gamertag)
6
+ end
7
+
8
+ def friends
9
+ @friends['Friends']
10
+ end
11
+
12
+ def online_friends
13
+ friends.select(&:IsOnline)
14
+ end
15
+
16
+ private
17
+
18
+ def fetch(gamertag)
19
+ uri = URI.parse("http://www.xboxleaders.com/api/friends.json?gamertag=#{CGI.escape gamertag}")
20
+ response = Net::HTTP.get_response(uri)
21
+ hash = JSON.parse(response.body)
22
+ Hashie::Mash.new hash['Data']
23
+ end
24
+ end
25
+ end
@@ -1,3 +1,3 @@
1
1
  module Gamertag
2
- VERSION = "1.0.3"
2
+ VERSION = "1.1.0"
3
3
  end
@@ -0,0 +1,520 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.xboxleaders.com/api/friends.json?gamertag=Belial1984
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ accept:
11
+ - ! '*/*'
12
+ user-agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ date:
20
+ - Sat, 12 Jan 2013 11:55:29 GMT
21
+ server:
22
+ - Apache/2.2.14 (Ubuntu)
23
+ x-powered-by:
24
+ - Luracast Restler v2.1.0
25
+ cache-control:
26
+ - no-cache, must-revalidate
27
+ expires:
28
+ - '0'
29
+ transfer-encoding:
30
+ - chunked
31
+ content-type:
32
+ - application/json
33
+ body:
34
+ encoding: US-ASCII
35
+ string: ! "{\n \"Data\": {\n \"TotalFriends\": 65,\n \"TotalOnlineFriends\":
36
+ 7,\n \"TotalOfflineFriends\": 58,\n \"Friends\": [\n {\n \"Gamertag\":
37
+ \"Ageblaster\",\n \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.4b4b07d1\\/tile\\/0\\/18023\",\n
38
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.4b4b07d1\\/tile\\/0\\/28023\",\n
39
+ \ \"GamerScore\": 25655,\n \"IsOnline\": false,\n \"PresenceInfo\":
40
+ {\n \"LastOnline\": 1357873864,\n \"OnlineStatus\": \"Last
41
+ seen 1\\/11\\/2013 playing Halo 4\",\n \"Game\": {\n \"Title\":
42
+ \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
43
+ \ }\n }\n },\n {\n \"Gamertag\": \"Alch3mist87\",\n
44
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Alch3mist87\\/avatarpic-s.png\",\n
45
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Alch3mist87\\/avatarpic-l.png\",\n
46
+ \ \"GamerScore\": 5640,\n \"IsOnline\": false,\n \"PresenceInfo\":
47
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
48
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
49
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
50
+ \ }\n }\n },\n {\n \"Gamertag\": \"alcoholfairy\",\n
51
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11020\",\n
52
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21020\",\n
53
+ \ \"GamerScore\": 2030,\n \"IsOnline\": false,\n \"PresenceInfo\":
54
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
55
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
56
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
57
+ \ }\n }\n },\n {\n \"Gamertag\": \"Andrewnez\",\n
58
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Andrewnez\\/avatarpic-s.png\",\n
59
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Andrewnez\\/avatarpic-l.png\",\n
60
+ \ \"GamerScore\": 15865,\n \"IsOnline\": false,\n \"PresenceInfo\":
61
+ {\n \"LastOnline\": 1357859762,\n \"OnlineStatus\": \"Last
62
+ seen 1\\/10\\/2013 playing Halo 4\",\n \"Game\": {\n \"Title\":
63
+ \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
64
+ \ }\n }\n },\n {\n \"Gamertag\": \"ANDREWsALSTON\",\n
65
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ANDREWsALSTON\\/avatarpic-s.png\",\n
66
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ANDREWsALSTON\\/avatarpic-l.png\",\n
67
+ \ \"GamerScore\": 25610,\n \"IsOnline\": false,\n \"PresenceInfo\":
68
+ {\n \"LastOnline\": 1357920355,\n \"OnlineStatus\": \"Last
69
+ seen 19 hours ago playing Just Dance 4\",\n \"Game\": {\n \"Title\":
70
+ \"Just Dance 4\",\n \"Id\": 1431505077,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505077\"\n
71
+ \ }\n }\n },\n {\n \"Gamertag\": \"barball\",\n
72
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/barball\\/avatarpic-s.png\",\n
73
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/barball\\/avatarpic-l.png\",\n
74
+ \ \"GamerScore\": 19434,\n \"IsOnline\": false,\n \"PresenceInfo\":
75
+ {\n \"LastOnline\": 1357948735,\n \"OnlineStatus\": \"Last
76
+ seen 11 hours ago playing BBC iPlayer\",\n \"Game\": {\n \"Title\":
77
+ \"BBC iPlayer\",\n \"Id\": 1180174289,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1180174289\"\n
78
+ \ }\n }\n },\n {\n \"Gamertag\": \"BennyP83\",\n
79
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BennyP83\\/avatarpic-s.png\",\n
80
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BennyP83\\/avatarpic-l.png\",\n
81
+ \ \"GamerScore\": 3384,\n \"IsOnline\": false,\n \"PresenceInfo\":
82
+ {\n \"LastOnline\": 1357508211,\n \"OnlineStatus\": \"Last
83
+ seen 1\\/6\\/2013 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
84
+ \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
85
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
86
+ \ }\n },\n {\n \"Gamertag\": \"BigMFRick777\",\n \"AvatarSmall\":
87
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58410a5a\\/tile\\/0\\/1000d\",\n
88
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58410a5a\\/tile\\/0\\/2000d\",\n
89
+ \ \"GamerScore\": 17840,\n \"IsOnline\": false,\n \"PresenceInfo\":
90
+ {\n \"LastOnline\": 1357944566,\n \"OnlineStatus\": \"Last
91
+ seen 13 hours ago playing COD: Black Ops II\",\n \"Game\": {\n \"Title\":
92
+ \"COD: Black Ops II\",\n \"Id\": 1096157379,\n \"Url\":
93
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1096157379\"\n }\n
94
+ \ }\n },\n {\n \"Gamertag\": \"BillieBeardyPip\",\n
95
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BillieBeardyPip\\/avatarpic-s.png\",\n
96
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BillieBeardyPip\\/avatarpic-l.png\",\n
97
+ \ \"GamerScore\": 6640,\n \"IsOnline\": false,\n \"PresenceInfo\":
98
+ {\n \"LastOnline\": 1354467883,\n \"OnlineStatus\": \"Last
99
+ seen 12\\/2\\/2012 playing Red Dead Redemption\",\n \"Game\": {\n
100
+ \ \"Title\": \"Red Dead Redemption\",\n \"Id\": 1414793259,\n
101
+ \ \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414793259\"\n
102
+ \ }\n }\n },\n {\n \"Gamertag\": \"BladeHellSpawn\",\n
103
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BladeHellSpawn\\/avatarpic-s.png\",\n
104
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BladeHellSpawn\\/avatarpic-l.png\",\n
105
+ \ \"GamerScore\": 56762,\n \"IsOnline\": true,\n \"PresenceInfo\":
106
+ {\n \"LastOnline\": 1357990988,\n \"OnlineStatus\": \"Online
107
+ playing Borderlands 2\",\n \"Game\": {\n \"Title\": \"Borderlands
108
+ 2\",\n \"Id\": 1414793340,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414793340\"\n
109
+ \ }\n }\n },\n {\n \"Gamertag\": \"Brincat1983\",\n
110
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Brincat1983\\/avatarpic-s.png\",\n
111
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Brincat1983\\/avatarpic-l.png\",\n
112
+ \ \"GamerScore\": 5184,\n \"IsOnline\": false,\n \"PresenceInfo\":
113
+ {\n \"LastOnline\": 1357951386,\n \"OnlineStatus\": \"Last
114
+ seen 11 hours ago playing FIFA 13\",\n \"Game\": {\n \"Title\":
115
+ \"FIFA 13\",\n \"Id\": 1161890200,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1161890200\"\n
116
+ \ }\n }\n },\n {\n \"Gamertag\": \"CennyddB\",\n
117
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/CennyddB\\/avatarpic-s.png\",\n
118
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/CennyddB\\/avatarpic-l.png\",\n
119
+ \ \"GamerScore\": 6849,\n \"IsOnline\": true,\n \"PresenceInfo\":
120
+ {\n \"LastOnline\": 1357988481,\n \"OnlineStatus\": \"Online
121
+ playing Borderlands 2\",\n \"Game\": {\n \"Title\": \"Borderlands
122
+ 2\",\n \"Id\": 1414793340,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414793340\"\n
123
+ \ }\n }\n },\n {\n \"Gamertag\": \"Chipmuck
124
+ Killer\",\n \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11016\",\n
125
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21016\",\n
126
+ \ \"GamerScore\": 8165,\n \"IsOnline\": false,\n \"PresenceInfo\":
127
+ {\n \"LastOnline\": 1357873989,\n \"OnlineStatus\": \"Last
128
+ seen 1\\/11\\/2013 playing Halo 4\",\n \"Game\": {\n \"Title\":
129
+ \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
130
+ \ }\n }\n },\n {\n \"Gamertag\": \"Claw MD\",\n
131
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Claw%20MD\\/avatarpic-s.png\",\n
132
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Claw%20MD\\/avatarpic-l.png\",\n
133
+ \ \"GamerScore\": 23100,\n \"IsOnline\": false,\n \"PresenceInfo\":
134
+ {\n \"LastOnline\": 1357942899,\n \"OnlineStatus\": \"Last
135
+ seen 13 hours ago playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
136
+ \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
137
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
138
+ \ }\n },\n {\n \"Gamertag\": \"Cushman12\",\n \"AvatarSmall\":
139
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Cushman12\\/avatarpic-s.png\",\n
140
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Cushman12\\/avatarpic-l.png\",\n
141
+ \ \"GamerScore\": 2438,\n \"IsOnline\": false,\n \"PresenceInfo\":
142
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
143
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
144
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
145
+ \ }\n }\n },\n {\n \"Gamertag\": \"DaftPix\",\n
146
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/DaftPix\\/avatarpic-s.png\",\n
147
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/DaftPix\\/avatarpic-l.png\",\n
148
+ \ \"GamerScore\": 6180,\n \"IsOnline\": false,\n \"PresenceInfo\":
149
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
150
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
151
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
152
+ \ }\n }\n },\n {\n \"Gamertag\": \"Danvers\",\n
153
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Danvers\\/avatarpic-s.png\",\n
154
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Danvers\\/avatarpic-l.png\",\n
155
+ \ \"GamerScore\": 69075,\n \"IsOnline\": false,\n \"PresenceInfo\":
156
+ {\n \"LastOnline\": 1357871190,\n \"OnlineStatus\": \"Last
157
+ seen 1\\/11\\/2013 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
158
+ \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
159
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
160
+ \ }\n },\n {\n \"Gamertag\": \"daveyj666\",\n \"AvatarSmall\":
161
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/daveyj666\\/avatarpic-s.png\",\n
162
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/daveyj666\\/avatarpic-l.png\",\n
163
+ \ \"GamerScore\": 31090,\n \"IsOnline\": false,\n \"PresenceInfo\":
164
+ {\n \"LastOnline\": 1357678495,\n \"OnlineStatus\": \"Last
165
+ seen 1\\/8\\/2013 playing My Xbox LIVE\",\n \"Game\": {\n \"Title\":
166
+ \"My Xbox LIVE\",\n \"Id\": 1297290147,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297290147\"\n
167
+ \ }\n }\n },\n {\n \"Gamertag\": \"donkykong50\",\n
168
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/donkykong50\\/avatarpic-s.png\",\n
169
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/donkykong50\\/avatarpic-l.png\",\n
170
+ \ \"GamerScore\": 9432,\n \"IsOnline\": false,\n \"PresenceInfo\":
171
+ {\n \"LastOnline\": 1357901878,\n \"OnlineStatus\": \"Last
172
+ seen 1\\/11\\/2013 playing Fight Night Champ Demo\",\n \"Game\":
173
+ {\n \"Title\": \"Fight Night Champ Demo\",\n \"Id\":
174
+ 1161922895,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1161922895\"\n
175
+ \ }\n }\n },\n {\n \"Gamertag\": \"EJStyleS\",\n
176
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58570a70\\/tile\\/0\\/10402\",\n
177
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58570a70\\/tile\\/0\\/20402\",\n
178
+ \ \"GamerScore\": 81333,\n \"IsOnline\": false,\n \"PresenceInfo\":
179
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
180
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
181
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
182
+ \ }\n }\n },\n {\n \"Gamertag\": \"ElZer0\",\n
183
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ElZer0\\/avatarpic-s.png\",\n
184
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ElZer0\\/avatarpic-l.png\",\n
185
+ \ \"GamerScore\": 90533,\n \"IsOnline\": false,\n \"PresenceInfo\":
186
+ {\n \"LastOnline\": 1357988256,\n \"OnlineStatus\": \"Last
187
+ seen 57 minutes ago playing Halo 4\",\n \"Game\": {\n \"Title\":
188
+ \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
189
+ \ }\n }\n },\n {\n \"Gamertag\": \"Eternal
190
+ Epoch\",\n \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Eternal%20Epoch\\/avatarpic-s.png\",\n
191
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Eternal%20Epoch\\/avatarpic-l.png\",\n
192
+ \ \"GamerScore\": 54416,\n \"IsOnline\": false,\n \"PresenceInfo\":
193
+ {\n \"LastOnline\": 1357951148,\n \"OnlineStatus\": \"Last
194
+ seen 11 hours ago playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
195
+ \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
196
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
197
+ \ }\n },\n {\n \"Gamertag\": \"French Mako\",\n \"AvatarSmall\":
198
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58410811\\/tile\\/0\\/1000d\",\n
199
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58410811\\/tile\\/0\\/2000d\",\n
200
+ \ \"GamerScore\": 9285,\n \"IsOnline\": false,\n \"PresenceInfo\":
201
+ {\n \"LastOnline\": 1357947551,\n \"OnlineStatus\": \"Last
202
+ seen 12 hours ago playing Far Cry\\u00ae 3\",\n \"Game\": {\n \"Title\":
203
+ \"Far Cry\\u00ae 3\",\n \"Id\": 1431505036,\n \"Url\":
204
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505036\"\n }\n
205
+ \ }\n },\n {\n \"Gamertag\": \"Glancer914\",\n \"AvatarSmall\":
206
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Glancer914\\/avatarpic-s.png\",\n
207
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Glancer914\\/avatarpic-l.png\",\n
208
+ \ \"GamerScore\": 19167,\n \"IsOnline\": false,\n \"PresenceInfo\":
209
+ {\n \"LastOnline\": 1357328000,\n \"OnlineStatus\": \"Last
210
+ seen 1\\/4\\/2013 playing DOOM 3 BFG Edition\",\n \"Game\": {\n \"Title\":
211
+ \"DOOM 3 BFG Edition\",\n \"Id\": 1112737777,\n \"Url\":
212
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1112737777\"\n }\n
213
+ \ }\n },\n {\n \"Gamertag\": \"greenFUDGE\",\n \"AvatarSmall\":
214
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/greenFUDGE\\/avatarpic-s.png\",\n
215
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/greenFUDGE\\/avatarpic-l.png\",\n
216
+ \ \"GamerScore\": 7955,\n \"IsOnline\": false,\n \"PresenceInfo\":
217
+ {\n \"LastOnline\": 1357274833,\n \"OnlineStatus\": \"Last
218
+ seen 1\\/4\\/2013 playing SUPER STREETFIGHTER IV\",\n \"Game\": {\n
219
+ \ \"Title\": \"SUPER STREETFIGHTER IV\",\n \"Id\": 1128468384,\n
220
+ \ \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1128468384\"\n
221
+ \ }\n }\n },\n {\n \"Gamertag\": \"HD PLAYA\",\n
222
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/HD%20PLAYA\\/avatarpic-s.png\",\n
223
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/HD%20PLAYA\\/avatarpic-l.png\",\n
224
+ \ \"GamerScore\": 9225,\n \"IsOnline\": false,\n \"PresenceInfo\":
225
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
226
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
227
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
228
+ \ }\n }\n },\n {\n \"Gamertag\": \"hectic4\",\n
229
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.454107ef\\/tile\\/0\\/18001\",\n
230
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.454107ef\\/tile\\/0\\/28001\",\n
231
+ \ \"GamerScore\": 8074,\n \"IsOnline\": false,\n \"PresenceInfo\":
232
+ {\n \"LastOnline\": 1356123221,\n \"OnlineStatus\": \"Last
233
+ seen 12\\/21\\/2012 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
234
+ \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
235
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
236
+ \ }\n },\n {\n \"Gamertag\": \"Hemalkay\",\n \"AvatarSmall\":
237
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Hemalkay\\/avatarpic-s.png\",\n
238
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Hemalkay\\/avatarpic-l.png\",\n
239
+ \ \"GamerScore\": 465,\n \"IsOnline\": false,\n \"PresenceInfo\":
240
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
241
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
242
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
243
+ \ }\n }\n },\n {\n \"Gamertag\": \"herbiliza\",\n
244
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/herbiliza\\/avatarpic-s.png\",\n
245
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/herbiliza\\/avatarpic-l.png\",\n
246
+ \ \"GamerScore\": 19493,\n \"IsOnline\": false,\n \"PresenceInfo\":
247
+ {\n \"LastOnline\": 1356631314,\n \"OnlineStatus\": \"Last
248
+ seen 12\\/27\\/2012 playing Kinect Adventures\",\n \"Game\": {\n
249
+ \ \"Title\": \"Kinect Adventures\",\n \"Id\": 1297287405,\n
250
+ \ \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287405\"\n
251
+ \ }\n }\n },\n {\n \"Gamertag\": \"jokeday\",\n
252
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10003\",\n
253
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20003\",\n
254
+ \ \"GamerScore\": 2950,\n \"IsOnline\": false,\n \"PresenceInfo\":
255
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
256
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
257
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
258
+ \ }\n }\n },\n {\n \"Gamertag\": \"kretell2\",\n
259
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.584111f7\\/tile\\/0\\/10406\",\n
260
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.584111f7\\/tile\\/0\\/20406\",\n
261
+ \ \"GamerScore\": 75665,\n \"IsOnline\": false,\n \"PresenceInfo\":
262
+ {\n \"LastOnline\": 1357946640,\n \"OnlineStatus\": \"Last
263
+ seen 12 hours ago playing Darksiders II\",\n \"Game\": {\n \"Title\":
264
+ \"Darksiders II\",\n \"Id\": 1414596758,\n \"Url\":
265
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414596758\"\n }\n
266
+ \ }\n },\n {\n \"Gamertag\": \"LA SuP3R Dr4G0n\",\n
267
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11039\",\n
268
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21039\",\n
269
+ \ \"GamerScore\": 7535,\n \"IsOnline\": false,\n \"PresenceInfo\":
270
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
271
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
272
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
273
+ \ }\n }\n },\n {\n \"Gamertag\": \"loopylewie\",\n
274
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/1000c\",\n
275
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/2000c\",\n
276
+ \ \"GamerScore\": 2565,\n \"IsOnline\": false,\n \"PresenceInfo\":
277
+ {\n \"LastOnline\": 1356358262,\n \"OnlineStatus\": \"Last
278
+ seen 12\\/24\\/2012 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
279
+ \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
280
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
281
+ \ }\n },\n {\n \"Gamertag\": \"M5T4R 97\",\n \"AvatarSmall\":
282
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10007\",\n
283
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20007\",\n
284
+ \ \"GamerScore\": 5005,\n \"IsOnline\": false,\n \"PresenceInfo\":
285
+ {\n \"LastOnline\": 1357924332,\n \"OnlineStatus\": \"Last
286
+ seen 18 hours ago playing NBA 2K13\",\n \"Game\": {\n \"Title\":
287
+ \"NBA 2K13\",\n \"Id\": 1414793378,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414793378\"\n
288
+ \ }\n }\n },\n {\n \"Gamertag\": \"Maceration\",\n
289
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Maceration\\/avatarpic-s.png\",\n
290
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Maceration\\/avatarpic-l.png\",\n
291
+ \ \"GamerScore\": 50174,\n \"IsOnline\": true,\n \"PresenceInfo\":
292
+ {\n \"LastOnline\": 1357986046,\n \"OnlineStatus\": \"Online
293
+ playing Far Cry\\u00ae 3\",\n \"Game\": {\n \"Title\":
294
+ \"Far Cry\\u00ae 3\",\n \"Id\": 1431505036,\n \"Url\":
295
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505036\"\n }\n
296
+ \ }\n },\n {\n \"Gamertag\": \"ManBearPig 1983\",\n
297
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.584111f7\\/tile\\/0\\/1000c\",\n
298
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.584111f7\\/tile\\/0\\/2000c\",\n
299
+ \ \"GamerScore\": 40820,\n \"IsOnline\": true,\n \"PresenceInfo\":
300
+ {\n \"LastOnline\": 1357990149,\n \"OnlineStatus\": \"Online
301
+ playing Far Cry\\u00ae 3\",\n \"Game\": {\n \"Title\":
302
+ \"Far Cry\\u00ae 3\",\n \"Id\": 1431505036,\n \"Url\":
303
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505036\"\n }\n
304
+ \ }\n },\n {\n \"Gamertag\": \"ManyRanger048\",\n \"AvatarSmall\":
305
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/\\/global\\/t.FFFE07D1\\/tile\\/0\\/10000\",\n
306
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/\\/global\\/t.FFFE07D1\\/tile\\/0\\/20000\",\n
307
+ \ \"GamerScore\": 2143,\n \"IsOnline\": true,\n \"PresenceInfo\":
308
+ {\n \"LastOnline\": 1357990594,\n \"OnlineStatus\": \"Online
309
+ playing Sky\",\n \"Game\": {\n \"Title\": \"Sky\",\n \"Id\":
310
+ 1481115745,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1481115745\"\n
311
+ \ }\n }\n },\n {\n \"Gamertag\": \"MewtX\",\n
312
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/MewtX\\/avatarpic-s.png\",\n
313
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/MewtX\\/avatarpic-l.png\",\n
314
+ \ \"GamerScore\": 31091,\n \"IsOnline\": false,\n \"PresenceInfo\":
315
+ {\n \"LastOnline\": 1357579700,\n \"OnlineStatus\": \"Last
316
+ seen 1\\/7\\/2013 playing Xbox SmartGlass\",\n \"Game\": {\n \"Title\":
317
+ \"Xbox SmartGlass\",\n \"Id\": 1297290368,\n \"Url\":
318
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297290368\"\n }\n
319
+ \ }\n },\n {\n \"Gamertag\": \"MinTheMerciless\",\n
320
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.5841086e\\/tile\\/0\\/18005\",\n
321
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.5841086e\\/tile\\/0\\/28005\",\n
322
+ \ \"GamerScore\": 10330,\n \"IsOnline\": false,\n \"PresenceInfo\":
323
+ {\n \"LastOnline\": 1354144130,\n \"OnlineStatus\": \"Last
324
+ seen 11\\/28\\/2012 playing SUPER STREETFIGHTER IV\",\n \"Game\":
325
+ {\n \"Title\": \"SUPER STREETFIGHTER IV\",\n \"Id\":
326
+ 1128466428,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1128466428\"\n
327
+ \ }\n }\n },\n {\n \"Gamertag\": \"mrdhugha\",\n
328
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/mrdhugha\\/avatarpic-s.png\",\n
329
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/mrdhugha\\/avatarpic-l.png\",\n
330
+ \ \"GamerScore\": 6579,\n \"IsOnline\": false,\n \"PresenceInfo\":
331
+ {\n \"LastOnline\": 1357949884,\n \"OnlineStatus\": \"Last
332
+ seen 11 hours ago playing FIFA 13\",\n \"Game\": {\n \"Title\":
333
+ \"FIFA 13\",\n \"Id\": 1161890200,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1161890200\"\n
334
+ \ }\n }\n },\n {\n \"Gamertag\": \"Ms Elderflower\",\n
335
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Ms%20Elderflower\\/avatarpic-s.png\",\n
336
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Ms%20Elderflower\\/avatarpic-l.png\",\n
337
+ \ \"GamerScore\": 14208,\n \"IsOnline\": false,\n \"PresenceInfo\":
338
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
339
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
340
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
341
+ \ }\n }\n },\n {\n \"Gamertag\": \"Obsidien23\",\n
342
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Obsidien23\\/avatarpic-s.png\",\n
343
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Obsidien23\\/avatarpic-l.png\",\n
344
+ \ \"GamerScore\": 10975,\n \"IsOnline\": false,\n \"PresenceInfo\":
345
+ {\n \"LastOnline\": 1357954814,\n \"OnlineStatus\": \"Last
346
+ seen 10 hours ago playing YouTube\",\n \"Game\": {\n \"Title\":
347
+ \"YouTube\",\n \"Id\": 1110837201,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1110837201\"\n
348
+ \ }\n }\n },\n {\n \"Gamertag\": \"ORANEJUICE99\",\n
349
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10005\",\n
350
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20005\",\n
351
+ \ \"GamerScore\": 480,\n \"IsOnline\": false,\n \"PresenceInfo\":
352
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
353
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
354
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
355
+ \ }\n }\n },\n {\n \"Gamertag\": \"OSIRlS\",\n
356
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.4d5307e6\\/tile\\/0\\/18001\",\n
357
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.4d5307e6\\/tile\\/0\\/28001\",\n
358
+ \ \"GamerScore\": 14365,\n \"IsOnline\": false,\n \"PresenceInfo\":
359
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
360
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
361
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
362
+ \ }\n }\n },\n {\n \"Gamertag\": \"plattedbumhair\",\n
363
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/\\/global\\/t.FFFE07D1\\/tile\\/0\\/10000\",\n
364
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/\\/global\\/t.FFFE07D1\\/tile\\/0\\/20000\",\n
365
+ \ \"GamerScore\": 960,\n \"IsOnline\": false,\n \"PresenceInfo\":
366
+ {\n \"LastOnline\": 1355064340,\n \"OnlineStatus\": \"Last
367
+ seen 12\\/9\\/2012 playing NHL\\u00ae 13\",\n \"Game\": {\n \"Title\":
368
+ \"NHL\\u00ae 13\",\n \"Id\": 1161890203,\n \"Url\":
369
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1161890203\"\n }\n
370
+ \ }\n },\n {\n \"Gamertag\": \"Pollomaverick\",\n \"AvatarSmall\":
371
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Pollomaverick\\/avatarpic-s.png\",\n
372
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Pollomaverick\\/avatarpic-l.png\",\n
373
+ \ \"GamerScore\": 8455,\n \"IsOnline\": false,\n \"PresenceInfo\":
374
+ {\n \"LastOnline\": 1357952885,\n \"OnlineStatus\": \"Last
375
+ seen 10 hours ago playing SUPER STREETFIGHTER IV\",\n \"Game\": {\n
376
+ \ \"Title\": \"SUPER STREETFIGHTER IV\",\n \"Id\": 1128466428,\n
377
+ \ \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1128466428\"\n
378
+ \ }\n }\n },\n {\n \"Gamertag\": \"RentokillXtreme\",\n
379
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RentokillXtreme\\/avatarpic-s.png\",\n
380
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RentokillXtreme\\/avatarpic-l.png\",\n
381
+ \ \"GamerScore\": 875,\n \"IsOnline\": false,\n \"PresenceInfo\":
382
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
383
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
384
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
385
+ \ }\n }\n },\n {\n \"Gamertag\": \"RobBucksVag\",\n
386
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RobBucksVag\\/avatarpic-s.png\",\n
387
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RobBucksVag\\/avatarpic-l.png\",\n
388
+ \ \"GamerScore\": 5215,\n \"IsOnline\": false,\n \"PresenceInfo\":
389
+ {\n \"LastOnline\": 1357955431,\n \"OnlineStatus\": \"Last
390
+ seen 10 hours ago playing Halo 4\",\n \"Game\": {\n \"Title\":
391
+ \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
392
+ \ }\n }\n },\n {\n \"Gamertag\": \"RYL0N\",\n
393
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RYL0N\\/avatarpic-s.png\",\n
394
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RYL0N\\/avatarpic-l.png\",\n
395
+ \ \"GamerScore\": 5140,\n \"IsOnline\": false,\n \"PresenceInfo\":
396
+ {\n \"LastOnline\": 1357867043,\n \"OnlineStatus\": \"Last
397
+ seen 1\\/11\\/2013 playing AC Revelations\",\n \"Game\": {\n \"Title\":
398
+ \"AC Revelations\",\n \"Id\": 1431505017,\n \"Url\":
399
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505017\"\n }\n
400
+ \ }\n },\n {\n \"Gamertag\": \"shinyhappydan\",\n \"AvatarSmall\":
401
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/shinyhappydan\\/avatarpic-s.png\",\n
402
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/shinyhappydan\\/avatarpic-l.png\",\n
403
+ \ \"GamerScore\": 3420,\n \"IsOnline\": false,\n \"PresenceInfo\":
404
+ {\n \"LastOnline\": 1357989587,\n \"OnlineStatus\": \"Last
405
+ seen 35 minutes ago playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
406
+ \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
407
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
408
+ \ }\n },\n {\n \"Gamertag\": \"skolymenos7\",\n \"AvatarSmall\":
409
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/skolymenos7\\/avatarpic-s.png\",\n
410
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/skolymenos7\\/avatarpic-l.png\",\n
411
+ \ \"GamerScore\": 8050,\n \"IsOnline\": false,\n \"PresenceInfo\":
412
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
413
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
414
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
415
+ \ }\n }\n },\n {\n \"Gamertag\": \"SNaKeW0LF\",\n
416
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10002\",\n
417
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20002\",\n
418
+ \ \"GamerScore\": 16640,\n \"IsOnline\": false,\n \"PresenceInfo\":
419
+ {\n \"LastOnline\": 1357962102,\n \"OnlineStatus\": \"Last
420
+ seen 8 hours ago playing WWE '13\",\n \"Game\": {\n \"Title\":
421
+ \"WWE '13\",\n \"Id\": 1414596788,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414596788\"\n
422
+ \ }\n }\n },\n {\n \"Gamertag\": \"StereoTaoTzu\",\n
423
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/StereoTaoTzu\\/avatarpic-s.png\",\n
424
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/StereoTaoTzu\\/avatarpic-l.png\",\n
425
+ \ \"GamerScore\": 9264,\n \"IsOnline\": true,\n \"PresenceInfo\":
426
+ {\n \"LastOnline\": 1357991391,\n \"OnlineStatus\": \"Online
427
+ playing F1 Race Stars\\u2122\",\n \"Game\": {\n \"Title\":
428
+ \"F1 Race Stars\\u2122\",\n \"Id\": 1129121865,\n \"Url\":
429
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1129121865\"\n }\n
430
+ \ }\n },\n {\n \"Gamertag\": \"stewpinkila\",\n \"AvatarSmall\":
431
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10001\",\n
432
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20001\",\n
433
+ \ \"GamerScore\": 660,\n \"IsOnline\": false,\n \"PresenceInfo\":
434
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
435
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
436
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
437
+ \ }\n }\n },\n {\n \"Gamertag\": \"STUCKIE
438
+ UANK\",\n \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/STUCKIE%20UANK\\/avatarpic-s.png\",\n
439
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/STUCKIE%20UANK\\/avatarpic-l.png\",\n
440
+ \ \"GamerScore\": 355,\n \"IsOnline\": false,\n \"PresenceInfo\":
441
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
442
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
443
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
444
+ \ }\n }\n },\n {\n \"Gamertag\": \"Super Kayven\",\n
445
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Super%20Kayven\\/avatarpic-s.png\",\n
446
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Super%20Kayven\\/avatarpic-l.png\",\n
447
+ \ \"GamerScore\": 8375,\n \"IsOnline\": false,\n \"PresenceInfo\":
448
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
449
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
450
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
451
+ \ }\n }\n },\n {\n \"Gamertag\": \"TechEgg\",\n
452
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10006\",\n
453
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20006\",\n
454
+ \ \"GamerScore\": 2310,\n \"IsOnline\": false,\n \"PresenceInfo\":
455
+ {\n \"LastOnline\": 1356561055,\n \"OnlineStatus\": \"Last
456
+ seen 12\\/26\\/2012 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
457
+ \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
458
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
459
+ \ }\n },\n {\n \"Gamertag\": \"TheClocKwize\",\n \"AvatarSmall\":
460
+ \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10002\",\n
461
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20002\",\n
462
+ \ \"GamerScore\": 925,\n \"IsOnline\": false,\n \"PresenceInfo\":
463
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
464
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
465
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
466
+ \ }\n }\n },\n {\n \"Gamertag\": \"tod 49\",\n
467
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/tod%2049\\/avatarpic-s.png\",\n
468
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/tod%2049\\/avatarpic-l.png\",\n
469
+ \ \"GamerScore\": 10910,\n \"IsOnline\": false,\n \"PresenceInfo\":
470
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
471
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
472
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
473
+ \ }\n }\n },\n {\n \"Gamertag\": \"U eNGAGE\",\n
474
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11013\",\n
475
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21013\",\n
476
+ \ \"GamerScore\": 4445,\n \"IsOnline\": true,\n \"PresenceInfo\":
477
+ {\n \"LastOnline\": 1357991609,\n \"OnlineStatus\": \"Online
478
+ playing COD: Black Ops II\",\n \"Game\": {\n \"Title\":
479
+ \"COD: Black Ops II\",\n \"Id\": 1096157379,\n \"Url\":
480
+ \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1096157379\"\n }\n
481
+ \ }\n },\n {\n \"Gamertag\": \"UNIQUE SWITCHER\",\n
482
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11014\",\n
483
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21014\",\n
484
+ \ \"GamerScore\": 10954,\n \"IsOnline\": false,\n \"PresenceInfo\":
485
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
486
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
487
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
488
+ \ }\n }\n },\n {\n \"Gamertag\": \"UZI1\",\n
489
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/UZI1\\/avatarpic-s.png\",\n
490
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/UZI1\\/avatarpic-l.png\",\n
491
+ \ \"GamerScore\": 6700,\n \"IsOnline\": false,\n \"PresenceInfo\":
492
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
493
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
494
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
495
+ \ }\n }\n },\n {\n \"Gamertag\": \"xs wardy\",\n
496
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/xs%20wardy\\/avatarpic-s.png\",\n
497
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/xs%20wardy\\/avatarpic-l.png\",\n
498
+ \ \"GamerScore\": 18526,\n \"IsOnline\": false,\n \"PresenceInfo\":
499
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
500
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
501
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
502
+ \ }\n }\n },\n {\n \"Gamertag\": \"ZS mattltm\",\n
503
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ZS%20mattltm\\/avatarpic-s.png\",\n
504
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ZS%20mattltm\\/avatarpic-l.png\",\n
505
+ \ \"GamerScore\": 1800,\n \"IsOnline\": false,\n \"PresenceInfo\":
506
+ {\n \"LastOnline\": 1356901416,\n \"OnlineStatus\": \"Last
507
+ seen 12\\/30\\/2012 playing Halo 4\",\n \"Game\": {\n \"Title\":
508
+ \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
509
+ \ }\n }\n },\n {\n \"Gamertag\": \"ZubK\",\n
510
+ \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ZubK\\/avatarpic-s.png\",\n
511
+ \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ZubK\\/avatarpic-l.png\",\n
512
+ \ \"GamerScore\": 6380,\n \"IsOnline\": false,\n \"PresenceInfo\":
513
+ {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
514
+ \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
515
+ 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
516
+ \ }\n }\n }\n ]\n },\n \"Stat\": \"ok\",\n \"In\":
517
+ 4.073,\n \"Authed\": \"false\",\n \"AuthedAs\": null\n}"
518
+ http_version: '1.1'
519
+ recorded_at: Sat, 12 Jan 2013 11:55:34 GMT
520
+ recorded_with: VCR 2.3.0
@@ -0,0 +1,19 @@
1
+ require 'spec_helper'
2
+
3
+ describe Gamertag::Friends do
4
+ use_vcr_cassette('Friends_Belial1984')
5
+
6
+ it "should return all friends" do
7
+ profile = Gamertag::Friends.new('Belial1984')
8
+
9
+ profile.friends.class.should be(Array)
10
+ profile.friends.length.should eql(65)
11
+ end
12
+
13
+ it "should return online friends" do
14
+ profile = Gamertag::Friends.new('Belial1984')
15
+
16
+ profile.online_friends.class.should be(Array)
17
+ profile.online_friends.length.should eql(7)
18
+ end
19
+ end
@@ -2,6 +2,6 @@ require 'spec_helper'
2
2
 
3
3
  describe Gamertag do
4
4
  it "should be the correct version" do
5
- Gamertag::VERSION.should == '1.0.3'
5
+ Gamertag::VERSION.should == '1.1.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gamertag
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-12-20 00:00:00.000000000 Z
13
+ date: 2013-01-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: json
@@ -142,13 +142,16 @@ files:
142
142
  - Rakefile
143
143
  - gamertag.gemspec
144
144
  - lib/gamertag.rb
145
+ - lib/gamertag/friends.rb
145
146
  - lib/gamertag/played_games.rb
146
147
  - lib/gamertag/profile.rb
147
148
  - lib/gamertag/simple_profile.rb
148
149
  - lib/gamertag/version.rb
150
+ - spec/fixtures/vcr_cassettes/Friends_Belial1984.yml
149
151
  - spec/fixtures/vcr_cassettes/PlayedGames_Belial1984.yml
150
152
  - spec/fixtures/vcr_cassettes/PlayedGames_some_user.yml
151
153
  - spec/fixtures/vcr_cassettes/SimpleProfile_Belial1984.yml
154
+ - spec/friends_spec.rb
152
155
  - spec/played_games_spec.rb
153
156
  - spec/profile_spec.rb
154
157
  - spec/simple_profile_spec.rb
@@ -168,7 +171,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
168
171
  version: '0'
169
172
  segments:
170
173
  - 0
171
- hash: -1636078989811712083
174
+ hash: 1008090992145051836
172
175
  required_rubygems_version: !ruby/object:Gem::Requirement
173
176
  none: false
174
177
  requirements:
@@ -177,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
180
  version: '0'
178
181
  segments:
179
182
  - 0
180
- hash: -1636078989811712083
183
+ hash: 1008090992145051836
181
184
  requirements: []
182
185
  rubyforge_project: gamertag
183
186
  rubygems_version: 1.8.24
@@ -185,9 +188,11 @@ signing_key:
185
188
  specification_version: 3
186
189
  summary: A gem for retrieving your XBOX Live gamertag information
187
190
  test_files:
191
+ - spec/fixtures/vcr_cassettes/Friends_Belial1984.yml
188
192
  - spec/fixtures/vcr_cassettes/PlayedGames_Belial1984.yml
189
193
  - spec/fixtures/vcr_cassettes/PlayedGames_some_user.yml
190
194
  - spec/fixtures/vcr_cassettes/SimpleProfile_Belial1984.yml
195
+ - spec/friends_spec.rb
191
196
  - spec/played_games_spec.rb
192
197
  - spec/profile_spec.rb
193
198
  - spec/simple_profile_spec.rb