halo-reach-api 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.rvmrc +2 -1
- data/Gemfile +4 -4
- data/README.rdoc +5 -1
- data/Rakefile +6 -2
- data/VERSION +1 -1
- data/halo-reach-api.gemspec +18 -25
- data/lib/halo-reach-api.rb +12 -12
- data/test/fakeweb/reach_file_search.json +1 -1
- data/test/test_halo-reach-api.rb +2 -2
- metadata +60 -102
- data/Gemfile.lock +0 -29
data/.rvmrc
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
rvm 1.8.7
|
1
|
+
rvm --create 1.8.7@halo-reach-api_gem
|
2
|
+
rvm --create 1.9.2@halo-reach-api_gem
|
data/Gemfile
CHANGED
@@ -4,12 +4,12 @@ source "http://rubygems.org"
|
|
4
4
|
# Include everything needed to run rake, tests, features, etc.
|
5
5
|
group :development do
|
6
6
|
gem "bundler", "~> 1.0.0"
|
7
|
-
gem "jeweler", "~> 1.
|
8
|
-
gem "rcov", "
|
7
|
+
gem "jeweler", "~> 1.6.0"
|
8
|
+
gem "rcov", "0.9.9"
|
9
9
|
end
|
10
10
|
|
11
|
-
gem 'httparty'
|
12
|
-
gem 'json'
|
11
|
+
gem 'httparty'
|
12
|
+
gem 'json'
|
13
13
|
|
14
14
|
group :test do
|
15
15
|
gem 'fakeweb'
|
data/README.rdoc
CHANGED
@@ -37,7 +37,7 @@ A: No. You can subscribe to Bungie Pro and generate an API key for your applicat
|
|
37
37
|
|
38
38
|
Q: Dates are funky and not parsed as dates. For example:
|
39
39
|
|
40
|
-
|
40
|
+
>> { "Credits" : 1000,
|
41
41
|
"Description" : "Earn 20 assists today in multiplayer Matchmaking.",
|
42
42
|
"ExpirationDate" : "/Date(1290510000000-0800)/",
|
43
43
|
"IsWeeklyChallenge" : false,
|
@@ -50,6 +50,10 @@ A: Yes they are funky. Yes. They. Are. You can now parse them out with the Halo:
|
|
50
50
|
|
51
51
|
== Changelog
|
52
52
|
|
53
|
+
=== 1.0.3
|
54
|
+
|
55
|
+
* Fixed some internal Ruby API deprecation warnings
|
56
|
+
|
53
57
|
=== 1.0.2
|
54
58
|
|
55
59
|
* Added set_timeout method to set timeout for HTTP requests
|
data/Rakefile
CHANGED
@@ -40,8 +40,6 @@ Rcov::RcovTask.new do |test|
|
|
40
40
|
test.verbose = true
|
41
41
|
end
|
42
42
|
|
43
|
-
task :default => :test
|
44
|
-
|
45
43
|
require 'rake/rdoctask'
|
46
44
|
Rake::RDocTask.new do |rdoc|
|
47
45
|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
@@ -51,3 +49,9 @@ Rake::RDocTask.new do |rdoc|
|
|
51
49
|
rdoc.rdoc_files.include('README*')
|
52
50
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
53
51
|
end
|
52
|
+
|
53
|
+
task :default => :test_rubies
|
54
|
+
|
55
|
+
task :test_rubies do
|
56
|
+
system "rvm 1.8.7@halo-reach-api_gem,1.9.2@halo-reach-api_gem rake test"
|
57
|
+
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.3
|
data/halo-reach-api.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{halo-reach-api}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = [
|
12
|
-
s.date = %q{2011-
|
11
|
+
s.authors = [%q{David Czarnecki}]
|
12
|
+
s.date = %q{2011-08-18}
|
13
13
|
s.description = %q{Ruby gem for interacting with the Halo:Reach API}
|
14
14
|
s.email = %q{dczarnecki@agoragames.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -20,7 +20,6 @@ Gem::Specification.new do |s|
|
|
20
20
|
".document",
|
21
21
|
".rvmrc",
|
22
22
|
"Gemfile",
|
23
|
-
"Gemfile.lock",
|
24
23
|
"LICENSE.txt",
|
25
24
|
"README.rdoc",
|
26
25
|
"Rakefile",
|
@@ -47,39 +46,33 @@ Gem::Specification.new do |s|
|
|
47
46
|
"test/test_halo-reach-util.rb"
|
48
47
|
]
|
49
48
|
s.homepage = %q{http://github.com/agoragames/halo-reach-api}
|
50
|
-
s.licenses = [
|
51
|
-
s.require_paths = [
|
52
|
-
s.rubygems_version = %q{1.
|
49
|
+
s.licenses = [%q{MIT}]
|
50
|
+
s.require_paths = [%q{lib}]
|
51
|
+
s.rubygems_version = %q{1.8.6}
|
53
52
|
s.summary = %q{Ruby gem for interacting with the Halo:Reach API}
|
54
|
-
s.test_files = [
|
55
|
-
"test/helper.rb",
|
56
|
-
"test/test_halo-reach-api.rb",
|
57
|
-
"test/test_halo-reach-util.rb"
|
58
|
-
]
|
59
53
|
|
60
54
|
if s.respond_to? :specification_version then
|
61
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
62
55
|
s.specification_version = 3
|
63
56
|
|
64
57
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
65
|
-
s.add_runtime_dependency(%q<httparty>, ["
|
66
|
-
s.add_runtime_dependency(%q<json>, ["
|
58
|
+
s.add_runtime_dependency(%q<httparty>, [">= 0"])
|
59
|
+
s.add_runtime_dependency(%q<json>, [">= 0"])
|
67
60
|
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
68
|
-
s.add_development_dependency(%q<jeweler>, ["~> 1.
|
69
|
-
s.add_development_dependency(%q<rcov>, ["
|
61
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.6.0"])
|
62
|
+
s.add_development_dependency(%q<rcov>, ["= 0.9.9"])
|
70
63
|
else
|
71
|
-
s.add_dependency(%q<httparty>, ["
|
72
|
-
s.add_dependency(%q<json>, ["
|
64
|
+
s.add_dependency(%q<httparty>, [">= 0"])
|
65
|
+
s.add_dependency(%q<json>, [">= 0"])
|
73
66
|
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
74
|
-
s.add_dependency(%q<jeweler>, ["~> 1.
|
75
|
-
s.add_dependency(%q<rcov>, ["
|
67
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
|
68
|
+
s.add_dependency(%q<rcov>, ["= 0.9.9"])
|
76
69
|
end
|
77
70
|
else
|
78
|
-
s.add_dependency(%q<httparty>, ["
|
79
|
-
s.add_dependency(%q<json>, ["
|
71
|
+
s.add_dependency(%q<httparty>, [">= 0"])
|
72
|
+
s.add_dependency(%q<json>, [">= 0"])
|
80
73
|
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
81
|
-
s.add_dependency(%q<jeweler>, ["~> 1.
|
82
|
-
s.add_dependency(%q<rcov>, ["
|
74
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
|
75
|
+
s.add_dependency(%q<rcov>, ["= 0.9.9"])
|
83
76
|
end
|
84
77
|
end
|
85
78
|
|
data/lib/halo-reach-api.rb
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
require 'httparty'
|
2
2
|
require 'json'
|
3
|
-
require '
|
3
|
+
require 'cgi'
|
4
4
|
|
5
5
|
module Halo
|
6
6
|
module Reach
|
7
7
|
class API
|
8
8
|
include HTTParty
|
9
9
|
|
10
|
-
VERSION = '1.0.
|
10
|
+
VERSION = '1.0.3'.freeze
|
11
11
|
API_URL = 'http://www.bungie.net/api/reach/reachapijson.svc/'
|
12
12
|
|
13
13
|
DEFAULT_HEADERS = {
|
@@ -55,27 +55,27 @@ module Halo
|
|
55
55
|
end
|
56
56
|
|
57
57
|
def get_game_history(gamertag, variant_class = 'Unknown', page = 0)
|
58
|
-
get_game_history_uri = "player/gamehistory/#{@token}/#{
|
58
|
+
get_game_history_uri = "player/gamehistory/#{@token}/#{CGI.escape(gamertag)}/#{variant_class}/#{page}"
|
59
59
|
self.class.get(@api_url + get_game_history_uri)
|
60
60
|
end
|
61
61
|
|
62
62
|
def get_player_details_with_stats_by_map(gamertag)
|
63
|
-
get_player_details_with_stats_by_map_uri = "player/details/bymap/#{@token}/#{
|
63
|
+
get_player_details_with_stats_by_map_uri = "player/details/bymap/#{@token}/#{CGI.escape(gamertag)}"
|
64
64
|
self.class.get(@api_url + get_player_details_with_stats_by_map_uri)
|
65
65
|
end
|
66
66
|
|
67
67
|
def get_player_details_with_stats_by_playlist(gamertag)
|
68
|
-
get_player_details_with_stats_by_playlist_uri = "player/details/byplaylist/#{@token}/#{
|
68
|
+
get_player_details_with_stats_by_playlist_uri = "player/details/byplaylist/#{@token}/#{CGI.escape(gamertag)}"
|
69
69
|
self.class.get(@api_url + get_player_details_with_stats_by_playlist_uri)
|
70
70
|
end
|
71
71
|
|
72
72
|
def get_player_details_with_no_stats(gamertag)
|
73
|
-
get_player_details_with_no_stats_uri = "player/details/nostats/#{@token}/#{
|
73
|
+
get_player_details_with_no_stats_uri = "player/details/nostats/#{@token}/#{CGI.escape(gamertag)}"
|
74
74
|
self.class.get(@api_url + get_player_details_with_no_stats_uri)
|
75
75
|
end
|
76
76
|
|
77
77
|
def get_player_file_share(gamertag)
|
78
|
-
get_player_file_share_uri = "file/share/#{@token}/#{
|
78
|
+
get_player_file_share_uri = "file/share/#{@token}/#{CGI.escape(gamertag)}"
|
79
79
|
self.class.get(@api_url + get_player_file_share_uri)
|
80
80
|
end
|
81
81
|
|
@@ -85,29 +85,29 @@ module Halo
|
|
85
85
|
end
|
86
86
|
|
87
87
|
def get_player_recent_screenshots(gamertag)
|
88
|
-
get_player_recent_screenshots_uri = "file/screenshots/#{@token}/#{
|
88
|
+
get_player_recent_screenshots_uri = "file/screenshots/#{@token}/#{CGI.escape(gamertag)}"
|
89
89
|
self.class.get(@api_url + get_player_recent_screenshots_uri)
|
90
90
|
end
|
91
91
|
|
92
92
|
def get_player_file_sets(gamertag)
|
93
|
-
get_player_file_sets_uri = "file/sets/#{@token}/#{
|
93
|
+
get_player_file_sets_uri = "file/sets/#{@token}/#{CGI.escape(gamertag)}"
|
94
94
|
self.class.get(@api_url + get_player_file_sets_uri)
|
95
95
|
end
|
96
96
|
|
97
97
|
def get_player_file_set_files(gamertag, file_set_id)
|
98
|
-
get_player_file_set_files_uri = "file/sets/files/#{@token}/#{
|
98
|
+
get_player_file_set_files_uri = "file/sets/files/#{@token}/#{CGI.escape(gamertag)}/#{file_set_id}"
|
99
99
|
self.class.get(@api_url + get_player_file_set_files_uri)
|
100
100
|
end
|
101
101
|
|
102
102
|
def get_player_rendered_videos(gamertag, page = 0)
|
103
|
-
get_player_rendered_videos_uri = "file/videos/#{@token}/#{
|
103
|
+
get_player_rendered_videos_uri = "file/videos/#{@token}/#{CGI.escape(gamertag)}/#{page}"
|
104
104
|
self.class.get(@api_url + get_player_rendered_videos_uri)
|
105
105
|
end
|
106
106
|
|
107
107
|
def reach_file_search(file_category, map_filter, engine_filter, date_filter, sort_filter, tags, page = 0)
|
108
108
|
reach_file_search_uri = "file/search/#{@token}/#{file_category}/#{map_filter}/#{engine_filter}/#{date_filter}/#{sort_filter}/#{page}"
|
109
109
|
unless tags.nil?
|
110
|
-
reach_file_search_uri += "?tags=#{
|
110
|
+
reach_file_search_uri += "?tags=#{CGI.escape(tags)}"
|
111
111
|
end
|
112
112
|
|
113
113
|
self.class.get(@api_url + reach_file_search_uri)
|
@@ -1 +1 @@
|
|
1
|
-
{"Files":[{"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9813139", "CreateDate":"/Date(1289847257000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1200, "FileId":9813139, "Title":"Best skyjack ever !!!", "Author":"joen93", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289848500000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"joen93", "LikesCount":299, "Description":"Probably the best skyjack ever done yet in halo reach !!!!", "DownloadCount":3538, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9822693", "CreateDate":"/Date(1289859355000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5060, "FileId":9822693, "Title":"Secret", "Author":"xoJDAWGox", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289864804000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"xoJDAWGox", "LikesCount":69, "Description":"", "DownloadCount":1942, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9836855", "CreateDate":"/Date(1289868196000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1200, "FileId":9836855, "Title":"How da hell\302\277\302\277\302\277???\302\277\302\277\302\277", "Author":"Krusty Pigeon", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289886934000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Krusty Pigeon", "LikesCount":127, "Description":"Another blame Stosh moment \302\244_\302\244", "DownloadCount":1461, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9876941", "CreateDate":"/Date(1289977413000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9876941, "Title":"AimBot At Its Finest", "Author":"K0HVEN", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289986256000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"K0HVEN", "LikesCount":70, "Description":"Some \"no skill\" scrub using his aimbot...so please watch and file a cheating report thx, Wednesday November 17, 2010 01:03:33", "DownloadCount":1443, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9818925", "CreateDate":"/Date(1289857138000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":7110, "FileId":9818925, "Title":"How to deal with an AFKer", "Author":"VioLeNcE x NLC", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289859355000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"VioLeNcE x NLC", "LikesCount":78, "Description":"This is 4 u fiercewhitewolf u bum", "DownloadCount":1107, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9805130", "CreateDate":"/Date(1289807176000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9805130, "Title":"Dead guy throws plasma grenade.", "Author":"SealforReal", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289813100000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"AIDEN4GEARS", "LikesCount":36, "Description":"Truly \"from the grave\"", "DownloadCount":1059, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9878625", "CreateDate":"/Date(1289994584000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9878625, "Title":"MLG Territories v2.0", "Author":"Hysteria 2SS", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289994584000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Hysteria 2SS", "LikesCount":11, "Description":"MLG Territories v2.0 on MLG Sanctuary v2.0, Wednesday November 17, 2010 03:49:44", "DownloadCount":684, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9832945", "CreateDate":"/Date(1289876790000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1200, "FileId":9832945, "Title":"Killtrocity Extermination OMG!!!", "Author":"faaart XCUSE ME", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289879531000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"faaart XCUSE ME", "LikesCount":68, "Description":"INVASION OWNAGE by faaart XCUSE ME", "DownloadCount":660, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9905110", "CreateDate":"/Date(1290052676000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5070, "FileId":9905110, "Title":"Secret Vehicles", "Author":"JumboDragonfly", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290053283000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Halo Tutorial", "LikesCount":45, "Description":"Chrisco93", "DownloadCount":1114, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9819269", "CreateDate":"/Date(1289859175000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9819269, "Title":"SWAT KILLIONAIRE!!!!", "Author":"FF sTyLiX", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289859895000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"FF sTyLiX", "LikesCount":25, "Description":"KILLIONAIRE IN SWAT !", "DownloadCount":663, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9910447", "CreateDate":"/Date(1286417858000-0700)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1080, "FileId":9910447, "Title":"hot anime girl pose", "Author":"TopazGrl", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290065994000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"TopazGrl", "LikesCount":24, "Description":"Invasion: Boneyard on Boneyard, Wednesday October 06, 2010 22:17:38", "DownloadCount":624, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9867313", "CreateDate":"/Date(1289963206000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5020, "FileId":9867313, "Title":"Michael Jackson on Reach!!!", "Author":"SPARTAN950129", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289963585000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"SPARTAN950129", "LikesCount":22, "Description":"WTF?!? Smooth Criminal moment!!! ", "DownloadCount":581, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9830533", "CreateDate":"/Date(1289875475000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9830533, "Title":"2 for 1 overkill", "Author":"Hysteria 2SS", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289876026000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Hysteria 2SS", "LikesCount":10, "Description":"Team Snipers on Pinnacle, Monday November 15, 2010 18:44:35", "DownloadCount":327, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9836454", "CreateDate":"/Date(1289882997000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9836454, "Title":"killionaire # 5", "Author":"Gamesager", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289886116000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Gamesager", "LikesCount":10, "Description":"I had 6 overkills 4 killtacs and 1 killionaire. went 91 n 0 with 2 unfrigginbelievables thanks to a black screen.", "DownloadCount":388, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9984247", "CreateDate":"/Date(1290228638000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5070, "FileId":9984247, "Title":"Hunter Mating Dance", "Author":"Raigns", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290229476000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Raigns", "LikesCount":60, "Description":"The Pillar of Autumn on Heroic, Friday November 19, 2010 23:50:38", "DownloadCount":395, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9912607", "CreateDate":"/Date(1290073525000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9912607, "Title":"Arena Slayer Pro", "Author":"AgentFoxMuIder", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290073525000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"AgentFoxMuIder", "LikesCount":18, "Description":"Arena Slayer Pro on Asylum, Thursday November 18, 2010 20:15:25", "DownloadCount":237, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9935299", "CreateDate":"/Date(1290132465000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9935299, "Title":"Arena Slayer Pro", "Author":"iGotUrPistola", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290132465000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"iGotUrPistola", "LikesCount":3, "Description":"Arena Slayer Pro on Asylum, Friday November 19, 2010 02:07:45", "DownloadCount":263, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9885644", "CreateDate":"/Date(1290021075000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9885644, "Title":"Snipers in them there hills", "Author":"EvilBoris DX", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290022483000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"EvilBoris DX", "LikesCount":39, "Description":"The hills have eyes", "DownloadCount":340, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9808615", "CreateDate":"/Date(1289833727000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9808615, "Title":"SheepHerder39 cheating!!!!", "Author":"DWN UNDA THUNDA", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289834650000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"DWN UNDA THUNDA", "LikesCount":24, "Description":"SWAT on The Cage, Tuesday November 16, 2010 05:08:47", "DownloadCount":192, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9840876", "CreateDate":"/Date(1289848013000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1020, "FileId":9840876, "Title":"Golden shot in SWAT.", "Author":"IceBrodie", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289899848000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"IceBrodie", "LikesCount":6, "Description":"One in a million shot of awsome.", "DownloadCount":260, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9963542", "CreateDate":"/Date(1290203420000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1080, "FileId":9963542, "Title":"NEW WAY: BONEYARD INVASION", "Author":"Sweet Freshness", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290205015000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Sweet Freshness", "LikesCount":11, "Description":"Elite can do tricks too!", "DownloadCount":256, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9860976", "CreateDate":"/Date(1289953754000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1200, "FileId":9860976, "Title":"flaming blue in a clone!!!!!", "Author":"georgee98", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289955207000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"georgee98", "LikesCount":11, "Description":"and white the clone in invasion", "DownloadCount":224, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9948743", "CreateDate":"/Date(1290164959000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5060, "FileId":9948743, "Title":"The Package", "Author":"Vexsf", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290164959000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Vexsf", "LikesCount":5, "Description":"The Package on Normal, Friday November 19, 2010 03:09:19", "DownloadCount":183, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9805227", "CreateDate":"/Date(1289810899000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1000, "FileId":9805227, "Title":"WHAAAAAAT!!!!!", "Author":"tomdone", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289813335000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"tomdone", "LikesCount":10, "Description":"clean headshot!!!!!!!", "DownloadCount":182, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9929281", "CreateDate":"/Date(1288850116000-0700)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1150, "FileId":9929281, "Title":"n@sty", "Author":"TuLegitimate", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290124686000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"TuLegitimate", "LikesCount":3, "Description":"MLG Team Slayer 1.1 on MLG Reflection 1.1, Thursday November 04, 2010 01:55:16", "DownloadCount":209, "RenderJobResolution":nil}], "FileSets":nil, "reason":"Okay", "status":0}
|
1
|
+
{"Files":[{"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9813139", "CreateDate":"/Date(1289847257000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1200, "FileId":9813139, "Title":"Best skyjack ever !!!", "Author":"joen93", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289848500000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"joen93", "LikesCount":299, "Description":"Probably the best skyjack ever done yet in halo reach !!!!", "DownloadCount":3538, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9822693", "CreateDate":"/Date(1289859355000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5060, "FileId":9822693, "Title":"Secret", "Author":"xoJDAWGox", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289864804000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"xoJDAWGox", "LikesCount":69, "Description":"", "DownloadCount":1942, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9836855", "CreateDate":"/Date(1289868196000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1200, "FileId":9836855, "Title":"How da hell", "Author":"Krusty Pigeon", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289886934000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Krusty Pigeon", "LikesCount":127, "Description":"Another blame Stosh moment", "DownloadCount":1461, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9876941", "CreateDate":"/Date(1289977413000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9876941, "Title":"AimBot At Its Finest", "Author":"K0HVEN", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289986256000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"K0HVEN", "LikesCount":70, "Description":"Some \"no skill\" scrub using his aimbot...so please watch and file a cheating report thx, Wednesday November 17, 2010 01:03:33", "DownloadCount":1443, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9818925", "CreateDate":"/Date(1289857138000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":7110, "FileId":9818925, "Title":"How to deal with an AFKer", "Author":"VioLeNcE x NLC", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289859355000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"VioLeNcE x NLC", "LikesCount":78, "Description":"This is 4 u fiercewhitewolf u bum", "DownloadCount":1107, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9805130", "CreateDate":"/Date(1289807176000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9805130, "Title":"Dead guy throws plasma grenade.", "Author":"SealforReal", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289813100000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"AIDEN4GEARS", "LikesCount":36, "Description":"Truly \"from the grave\"", "DownloadCount":1059, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9878625", "CreateDate":"/Date(1289994584000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9878625, "Title":"MLG Territories v2.0", "Author":"Hysteria 2SS", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289994584000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Hysteria 2SS", "LikesCount":11, "Description":"MLG Territories v2.0 on MLG Sanctuary v2.0, Wednesday November 17, 2010 03:49:44", "DownloadCount":684, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9832945", "CreateDate":"/Date(1289876790000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1200, "FileId":9832945, "Title":"Killtrocity Extermination OMG!!!", "Author":"faaart XCUSE ME", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289879531000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"faaart XCUSE ME", "LikesCount":68, "Description":"INVASION OWNAGE by faaart XCUSE ME", "DownloadCount":660, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9905110", "CreateDate":"/Date(1290052676000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5070, "FileId":9905110, "Title":"Secret Vehicles", "Author":"JumboDragonfly", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290053283000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Halo Tutorial", "LikesCount":45, "Description":"Chrisco93", "DownloadCount":1114, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9819269", "CreateDate":"/Date(1289859175000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9819269, "Title":"SWAT KILLIONAIRE!!!!", "Author":"FF sTyLiX", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289859895000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"FF sTyLiX", "LikesCount":25, "Description":"KILLIONAIRE IN SWAT !", "DownloadCount":663, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9910447", "CreateDate":"/Date(1286417858000-0700)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1080, "FileId":9910447, "Title":"hot anime girl pose", "Author":"TopazGrl", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290065994000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"TopazGrl", "LikesCount":24, "Description":"Invasion: Boneyard on Boneyard, Wednesday October 06, 2010 22:17:38", "DownloadCount":624, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9867313", "CreateDate":"/Date(1289963206000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5020, "FileId":9867313, "Title":"Michael Jackson on Reach!!!", "Author":"SPARTAN950129", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289963585000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"SPARTAN950129", "LikesCount":22, "Description":"WTF?!? Smooth Criminal moment!!! ", "DownloadCount":581, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9830533", "CreateDate":"/Date(1289875475000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9830533, "Title":"2 for 1 overkill", "Author":"Hysteria 2SS", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289876026000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Hysteria 2SS", "LikesCount":10, "Description":"Team Snipers on Pinnacle, Monday November 15, 2010 18:44:35", "DownloadCount":327, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9836454", "CreateDate":"/Date(1289882997000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9836454, "Title":"killionaire # 5", "Author":"Gamesager", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289886116000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Gamesager", "LikesCount":10, "Description":"I had 6 overkills 4 killtacs and 1 killionaire. went 91 n 0 with 2 unfrigginbelievables thanks to a black screen.", "DownloadCount":388, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9984247", "CreateDate":"/Date(1290228638000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5070, "FileId":9984247, "Title":"Hunter Mating Dance", "Author":"Raigns", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290229476000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Raigns", "LikesCount":60, "Description":"The Pillar of Autumn on Heroic, Friday November 19, 2010 23:50:38", "DownloadCount":395, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9912607", "CreateDate":"/Date(1290073525000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9912607, "Title":"Arena Slayer Pro", "Author":"AgentFoxMuIder", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290073525000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"AgentFoxMuIder", "LikesCount":18, "Description":"Arena Slayer Pro on Asylum, Thursday November 18, 2010 20:15:25", "DownloadCount":237, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9935299", "CreateDate":"/Date(1290132465000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9935299, "Title":"Arena Slayer Pro", "Author":"iGotUrPistola", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290132465000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"iGotUrPistola", "LikesCount":3, "Description":"Arena Slayer Pro on Asylum, Friday November 19, 2010 02:07:45", "DownloadCount":263, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9885644", "CreateDate":"/Date(1290021075000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9885644, "Title":"Snipers in them there hills", "Author":"EvilBoris DX", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290022483000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"EvilBoris DX", "LikesCount":39, "Description":"The hills have eyes", "DownloadCount":340, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9808615", "CreateDate":"/Date(1289833727000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":3006, "FileId":9808615, "Title":"SheepHerder39 cheating!!!!", "Author":"DWN UNDA THUNDA", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289834650000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"DWN UNDA THUNDA", "LikesCount":24, "Description":"SWAT on The Cage, Tuesday November 16, 2010 05:08:47", "DownloadCount":192, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9840876", "CreateDate":"/Date(1289848013000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1020, "FileId":9840876, "Title":"Golden shot in SWAT.", "Author":"IceBrodie", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289899848000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"IceBrodie", "LikesCount":6, "Description":"One in a million shot of awsome.", "DownloadCount":260, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9963542", "CreateDate":"/Date(1290203420000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1080, "FileId":9963542, "Title":"NEW WAY: BONEYARD INVASION", "Author":"Sweet Freshness", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290205015000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Sweet Freshness", "LikesCount":11, "Description":"Elite can do tricks too!", "DownloadCount":256, "RenderJobResolution":"rendered"}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9860976", "CreateDate":"/Date(1289953754000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1200, "FileId":9860976, "Title":"flaming blue in a clone!!!!!", "Author":"georgee98", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289955207000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"georgee98", "LikesCount":11, "Description":"and white the clone in invasion", "DownloadCount":224, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9948743", "CreateDate":"/Date(1290164959000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":5060, "FileId":9948743, "Title":"The Package", "Author":"Vexsf", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290164959000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"Vexsf", "LikesCount":5, "Description":"The Package on Normal, Friday November 19, 2010 03:09:19", "DownloadCount":183, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9805227", "CreateDate":"/Date(1289810899000-0800)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1000, "FileId":9805227, "Title":"WHAAAAAAT!!!!!", "Author":"tomdone", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1289813335000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"tomdone", "LikesCount":10, "Description":"clean headshot!!!!!!!", "DownloadCount":182, "RenderJobResolution":nil}, {"ScreenshotMediumUrl":nil, "FileDetailsUrl":"/stats/reach/filedetails.aspx?fid=9929281", "CreateDate":"/Date(1288850116000-0700)/", "ScreenshotThumbnailUrl":nil, "RenderedWMVPathHD":nil, "RenderedWMVPath":nil, "RenderJobStatus":nil, "MapId":1150, "FileId":9929281, "Title":"n@sty", "Author":"TuLegitimate", "ScreenshotFullSizeUrl":nil, "ModifiedDate":"/Date(1290124686000-0800)/", "FileCategory":"GameClip", "OriginalAuthor":"TuLegitimate", "LikesCount":3, "Description":"MLG Team Slayer 1.1 on MLG Reflection 1.1, Thursday November 04, 2010 01:55:16", "DownloadCount":209, "RenderJobResolution":nil}], "FileSets":nil, "reason":"Okay", "status":0}
|
data/test/test_halo-reach-api.rb
CHANGED
@@ -12,7 +12,7 @@ class TestHaloReachApi < Test::Unit::TestCase
|
|
12
12
|
end
|
13
13
|
|
14
14
|
def test_api_version
|
15
|
-
assert_equal '1.0.
|
15
|
+
assert_equal '1.0.3', Halo::Reach::API::VERSION
|
16
16
|
end
|
17
17
|
|
18
18
|
def test_can_set_token
|
@@ -168,7 +168,7 @@ class TestHaloReachApi < Test::Unit::TestCase
|
|
168
168
|
assert_equal 0, halo_reach_api_response['FileSets'].size
|
169
169
|
end
|
170
170
|
|
171
|
-
def
|
171
|
+
def test_get_player_file_sets_with_file_set_id
|
172
172
|
FakeWeb.register_uri(:get,
|
173
173
|
'http://www.bungie.net/api/reach/reachapijson.svc/file/sets/files/XXX/Gamertag/0',
|
174
174
|
:body => File.join(File.dirname(__FILE__), 'fakeweb', 'get_player_file_set_files.json'),
|
metadata
CHANGED
@@ -1,115 +1,82 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: halo-reach-api
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 0
|
9
|
-
- 2
|
10
|
-
version: 1.0.2
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.3
|
5
|
+
prerelease:
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- David Czarnecki
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
dependencies:
|
21
|
-
- !ruby/object:Gem::Dependency
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
12
|
+
date: 2011-08-18 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
24
15
|
name: httparty
|
25
|
-
|
16
|
+
requirement: &70097592326960 !ruby/object:Gem::Requirement
|
26
17
|
none: false
|
27
|
-
requirements:
|
28
|
-
- -
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
|
31
|
-
segments:
|
32
|
-
- 0
|
33
|
-
- 6
|
34
|
-
- 1
|
35
|
-
version: 0.6.1
|
36
|
-
requirement: *id001
|
37
|
-
- !ruby/object:Gem::Dependency
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
38
22
|
type: :runtime
|
39
23
|
prerelease: false
|
24
|
+
version_requirements: *70097592326960
|
25
|
+
- !ruby/object:Gem::Dependency
|
40
26
|
name: json
|
41
|
-
|
27
|
+
requirement: &70097592325500 !ruby/object:Gem::Requirement
|
42
28
|
none: false
|
43
|
-
requirements:
|
44
|
-
- -
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
|
47
|
-
|
48
|
-
- 1
|
49
|
-
- 4
|
50
|
-
- 6
|
51
|
-
version: 1.4.6
|
52
|
-
requirement: *id002
|
53
|
-
- !ruby/object:Gem::Dependency
|
54
|
-
type: :development
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
55
34
|
prerelease: false
|
35
|
+
version_requirements: *70097592325500
|
36
|
+
- !ruby/object:Gem::Dependency
|
56
37
|
name: bundler
|
57
|
-
|
38
|
+
requirement: &70097592324100 !ruby/object:Gem::Requirement
|
58
39
|
none: false
|
59
|
-
requirements:
|
40
|
+
requirements:
|
60
41
|
- - ~>
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
hash: 23
|
63
|
-
segments:
|
64
|
-
- 1
|
65
|
-
- 0
|
66
|
-
- 0
|
42
|
+
- !ruby/object:Gem::Version
|
67
43
|
version: 1.0.0
|
68
|
-
requirement: *id003
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
44
|
type: :development
|
71
45
|
prerelease: false
|
46
|
+
version_requirements: *70097592324100
|
47
|
+
- !ruby/object:Gem::Dependency
|
72
48
|
name: jeweler
|
73
|
-
|
49
|
+
requirement: &70097592322460 !ruby/object:Gem::Requirement
|
74
50
|
none: false
|
75
|
-
requirements:
|
51
|
+
requirements:
|
76
52
|
- - ~>
|
77
|
-
- !ruby/object:Gem::Version
|
78
|
-
|
79
|
-
segments:
|
80
|
-
- 1
|
81
|
-
- 5
|
82
|
-
- 1
|
83
|
-
version: 1.5.1
|
84
|
-
requirement: *id004
|
85
|
-
- !ruby/object:Gem::Dependency
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.6.0
|
86
55
|
type: :development
|
87
56
|
prerelease: false
|
57
|
+
version_requirements: *70097592322460
|
58
|
+
- !ruby/object:Gem::Dependency
|
88
59
|
name: rcov
|
89
|
-
|
60
|
+
requirement: &70097592320020 !ruby/object:Gem::Requirement
|
90
61
|
none: false
|
91
|
-
requirements:
|
92
|
-
- -
|
93
|
-
- !ruby/object:Gem::Version
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
requirement: *id005
|
62
|
+
requirements:
|
63
|
+
- - =
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 0.9.9
|
66
|
+
type: :development
|
67
|
+
prerelease: false
|
68
|
+
version_requirements: *70097592320020
|
99
69
|
description: Ruby gem for interacting with the Halo:Reach API
|
100
70
|
email: dczarnecki@agoragames.com
|
101
71
|
executables: []
|
102
|
-
|
103
72
|
extensions: []
|
104
|
-
|
105
|
-
extra_rdoc_files:
|
73
|
+
extra_rdoc_files:
|
106
74
|
- LICENSE.txt
|
107
75
|
- README.rdoc
|
108
|
-
files:
|
76
|
+
files:
|
109
77
|
- .document
|
110
78
|
- .rvmrc
|
111
79
|
- Gemfile
|
112
|
-
- Gemfile.lock
|
113
80
|
- LICENSE.txt
|
114
81
|
- README.rdoc
|
115
82
|
- Rakefile
|
@@ -134,41 +101,32 @@ files:
|
|
134
101
|
- test/helper.rb
|
135
102
|
- test/test_halo-reach-api.rb
|
136
103
|
- test/test_halo-reach-util.rb
|
137
|
-
has_rdoc: true
|
138
104
|
homepage: http://github.com/agoragames/halo-reach-api
|
139
|
-
licenses:
|
105
|
+
licenses:
|
140
106
|
- MIT
|
141
107
|
post_install_message:
|
142
108
|
rdoc_options: []
|
143
|
-
|
144
|
-
require_paths:
|
109
|
+
require_paths:
|
145
110
|
- lib
|
146
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
111
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
147
112
|
none: false
|
148
|
-
requirements:
|
149
|
-
- -
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
|
152
|
-
segments:
|
113
|
+
requirements:
|
114
|
+
- - ! '>='
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
segments:
|
153
118
|
- 0
|
154
|
-
|
155
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
119
|
+
hash: -2604304809080868493
|
120
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
156
121
|
none: false
|
157
|
-
requirements:
|
158
|
-
- -
|
159
|
-
- !ruby/object:Gem::Version
|
160
|
-
|
161
|
-
segments:
|
162
|
-
- 0
|
163
|
-
version: "0"
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
164
126
|
requirements: []
|
165
|
-
|
166
127
|
rubyforge_project:
|
167
|
-
rubygems_version: 1.
|
128
|
+
rubygems_version: 1.8.6
|
168
129
|
signing_key:
|
169
130
|
specification_version: 3
|
170
131
|
summary: Ruby gem for interacting with the Halo:Reach API
|
171
|
-
test_files:
|
172
|
-
- test/helper.rb
|
173
|
-
- test/test_halo-reach-api.rb
|
174
|
-
- test/test_halo-reach-util.rb
|
132
|
+
test_files: []
|
data/Gemfile.lock
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
crack (0.1.8)
|
5
|
-
fakeweb (1.2.8)
|
6
|
-
git (1.2.5)
|
7
|
-
httparty (0.6.1)
|
8
|
-
crack (= 0.1.8)
|
9
|
-
jeweler (1.5.1)
|
10
|
-
bundler (~> 1.0.0)
|
11
|
-
git (>= 1.2.5)
|
12
|
-
rake
|
13
|
-
json (1.4.6)
|
14
|
-
mocha (0.9.8)
|
15
|
-
rake
|
16
|
-
rake (0.8.7)
|
17
|
-
rcov (0.8.1.2.0)
|
18
|
-
|
19
|
-
PLATFORMS
|
20
|
-
ruby
|
21
|
-
|
22
|
-
DEPENDENCIES
|
23
|
-
bundler (~> 1.0.0)
|
24
|
-
fakeweb
|
25
|
-
httparty (~> 0.6.1)
|
26
|
-
jeweler (~> 1.5.1)
|
27
|
-
json (~> 1.4.6)
|
28
|
-
mocha
|
29
|
-
rcov
|