ultron 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -3
  3. data/.travis.yml +8 -0
  4. data/lib/ultron.rb +1 -0
  5. data/lib/ultron/models/entities.rb +11 -8
  6. data/lib/ultron/url.rb +18 -0
  7. data/lib/ultron/version.rb +1 -1
  8. data/spec/cassettes/Ultron_Characters/should_find_a_character.yml +8 -6
  9. data/spec/cassettes/Ultron_Characters/should_find_a_list_of_comics_featuring_the_character.yml +414 -1359
  10. data/spec/cassettes/Ultron_Comics/should_find_a_comic.yml +3 -1
  11. data/spec/cassettes/Ultron_Creators/should_find_a_list_of_series_by_the_creator.yml +130 -126
  12. data/spec/cassettes/Ultron_Events/should_find_a_list_of_stories_for_the_event.yml +6 -2
  13. data/spec/cassettes/Ultron_Series/should_give_a_default_set_of_series.yml +1103 -1101
  14. data/spec/cassettes/equality/should_be_equal_if_its_URL_minus_the_auth_bit_is_equal.yml +5993 -0
  15. data/spec/cassettes/exceptions/should_throw_a_404_wrapped_in_a_Marvel_exception_on_a_404.yml +2 -2
  16. data/spec/cassettes/exceptions/should_throw_a_No_Idea_What_This_Param_Is_exception.yml +2 -2
  17. data/spec/cassettes/exceptions/should_throw_a_Resource_Not_Found_exception_when_we_search_for_something_nonsensical.yml +2 -2
  18. data/spec/cassettes/exceptions/should_throw_an_Ultron_exception_when_we_do_something_dumb.yml +2 -2
  19. data/spec/cassettes/sample/let_us_pick_a_random_item/should_get_a_count_of_items_for_a_lookup.yml +253 -253
  20. data/spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_comic.yml +347 -360
  21. data/spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_comic_for_a_more_complex_search.yml +10 -10
  22. data/spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_offset_into_the_result_set.yml +253 -253
  23. data/spec/cassettes/searching/should_accept_with_as_a_synonym_for_where.yml +501 -499
  24. data/spec/cassettes/searching/should_let_us_get_a_comic.yml +3 -1
  25. data/spec/cassettes/searching/should_let_us_get_comics_by_a_creator.yml +263 -289
  26. data/spec/cassettes/searching/should_let_us_get_comics_by_a_creator_with_params_.yml +3 -1
  27. data/spec/cassettes/searching/should_let_us_get_more_than_the_default_20_results.yml +1814 -1806
  28. data/spec/cassettes/searching/should_let_us_search_with_multiple_parameters.yml +367 -365
  29. data/spec/cassettes/searching/should_let_us_search_with_parameters.yml +616 -614
  30. data/spec/ultron/equality_spec.rb +16 -0
  31. data/spec/ultron/{characters_spec.rb → models/characters_spec.rb} +0 -0
  32. data/spec/ultron/{comics_spec.rb → models/comics_spec.rb} +0 -0
  33. data/spec/ultron/{creators_spec.rb → models/creators_spec.rb} +0 -0
  34. data/spec/ultron/{ultron_spec.rb → models/entities_spec.rb} +0 -0
  35. data/spec/ultron/{events_spec.rb → models/events_spec.rb} +0 -0
  36. data/spec/ultron/{series_spec.rb → models/series_spec.rb} +0 -0
  37. data/spec/ultron/{sample_spec.rb → searches/sample_spec.rb} +1 -1
  38. data/spec/ultron/{searches_spec.rb → searches/searches_spec.rb} +1 -1
  39. data/spec/ultron/url_spec.rb +19 -0
  40. data/ultron.gemspec +1 -1
  41. metadata +25 -62
  42. data/spec/cassettes/Ultron_Characters/find_a_character.yml +0 -99
  43. data/spec/cassettes/Ultron_Comics/find_a_comic.yml +0 -46
  44. data/spec/cassettes/Ultron_Connection/should_get_a_200.yml +0 -559
  45. data/spec/cassettes/Ultron_Events/should_find_an_event.yml +0 -123
  46. data/spec/cassettes/Ultron_Series/and_again_here.yml +0 -244
  47. data/spec/cassettes/Ultron_Series/should_let_us_reuse_the_connection_safely.yml +0 -916
  48. data/spec/cassettes/Ultron_Series/should_let_us_search_with_parameters.yml +0 -244
  49. data/spec/cassettes/exceptions/should_throw_a_Marvel_exception_on_an_API_error.yml +0 -32
  50. data/spec/cassettes/exceptions/should_throw_a_No_Results_exception.yml +0 -34
  51. data/spec/cassettes/exceptions/should_throw_a_Not_Found_exception.yml +0 -32
  52. data/spec/cassettes/exceptions/should_throw_a_Resource_Not_Found_exception_when_we_search_for_something_non-sensical.yml +0 -33
  53. data/spec/cassettes/exceptions/should_throw_an_Ultron_exception_for_something_internal_to_Ultron.yml +0 -34
  54. data/spec/cassettes/searching/should_handle_an_empty_response_gracefully.yml +0 -34
  55. data/spec/cassettes/searching/should_indicate_Not_Found.yml +0 -61
  56. data/spec/cassettes/searching/should_throw_a_No_Results_exception.yml +0 -34
  57. data/spec/cassettes/searching/should_throw_a_Not_Found_exception.yml +0 -32
  58. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_get_a_count_of_items_for_a_lookup.yml +0 -1673
  59. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_character.yml +0 -585
  60. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_comic.yml +0 -3035
  61. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_comic_for_a_more_complex_search.yml +0 -312
  62. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_member_of_the_result_set.yml +0 -1673
  63. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_offset_into_the_result_set.yml +0 -1673
@@ -1,244 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/series?apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c&title=Uncanny%20X-Men&ts=1392317244
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- response:
13
- status:
14
- code: 200
15
- message: OK
16
- headers:
17
- Etag:
18
- - 752af0f0f25650e80f70bf204bdb27b3ffa0a473
19
- Content-Type:
20
- - application/json
21
- Content-Length:
22
- - '29270'
23
- Date:
24
- - Thu, 13 Feb 2014 22:52:09 GMT
25
- Connection:
26
- - keep-alive
27
- body:
28
- encoding: ASCII-8BIT
29
- string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"752af0f0f25650e80f70bf204bdb27b3ffa0a473\",\"data\":{\"offset\":0,\"limit\":20,\"total\":3,\"count\":3,\"results\":[{\"id\":17602,\"title\":\"Uncanny
30
- X-Men (2013 - Present)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/17602\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/17602/uncanny_x-men_2013_-_present?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2013,\"endYear\":2099,\"rating\":\"Rated
31
- T+\",\"type\":\"ongoing\",\"modified\":\"2014-02-06T12:04:33-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/70/511abc9036abd\",\"extension\":\"jpg\"},\"creators\":{\"available\":17,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/17602/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/12208\",\"name\":\"Arthur
32
- Adams\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/314\",\"name\":\"Neal
33
- Adams\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1063\",\"name\":\"Frazer
34
- Irving\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9146\",\"name\":\"Milo
35
- Manara\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5160\",\"name\":\"Phil
36
- Noto\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/3635\",\"name\":\"Joe
37
- Quesada\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/7190\",\"name\":\"Skottie
38
- Young\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11575\",\"name\":\"Kristafer
39
- Anka\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/232\",\"name\":\"Chris
40
- Bachalo\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/12309\",\"name\":\"George
41
- Beliard\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4300\",\"name\":\"Nick
42
- Lowe\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/24\",\"name\":\"Brian
43
- Michael Bendis\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/12324\",\"name\":\"Ronaldo
44
- Del Carmen\",\"role\":\"artist (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/452\",\"name\":\"Chris
45
- Eliopoulos\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/12148\",\"name\":\"Frazer
46
- Irving Limited\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/649\",\"name\":\"Ed
47
- McGuinness\",\"role\":\"penciler (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/427\",\"name\":\"Tim
48
- Townsend\",\"role\":\"inker (cover)\"}],\"returned\":17},\"characters\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/17602/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009268\",\"name\":\"Deadpool\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009310\",\"name\":\"Emma
49
- Frost\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009415\",\"name\":\"Magik
50
- (Illyana Rasputin)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009417\",\"name\":\"Magneto\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":6},\"stories\":{\"available\":84,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/17602/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104900\",\"name\":\"cover
51
- from Uncanny X-Men (2013) #1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104901\",\"name\":\"story
52
- from Uncanny X-Men (2013) #1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104904\",\"name\":\"cover
53
- from Uncanny X-Men (2013) #1 (BLANK COVER VARIANT)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104905\",\"name\":\"story
54
- from Uncanny X-Men (2013) #1 (BLANK COVER VARIANT)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104906\",\"name\":\"cover
55
- from Uncanny X-Men (2013) #1 (YOUNG BABY VARIANT)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104907\",\"name\":\"story
56
- from Uncanny X-Men (2013) #1 (YOUNG BABY VARIANT)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104908\",\"name\":\"cover
57
- from Uncanny X-Men (2013) #1 (TBD ARTIST VARIANT)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104909\",\"name\":\"story
58
- from Uncanny X-Men (2013) #1 (TBD ARTIST VARIANT)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104910\",\"name\":\"cover
59
- from Uncanny X-Men (2013) #1 (QUESADA VARIANT)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104911\",\"name\":\"story
60
- from Uncanny X-Men (2013) #1 (QUESADA VARIANT)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104914\",\"name\":\"cover
61
- from Uncanny X-Men (2013) #1 (QUESADA SKETCH VARIANT)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104915\",\"name\":\"story
62
- from Uncanny X-Men (2013) #1 (QUESADA SKETCH VARIANT)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104916\",\"name\":\"cover
63
- from Uncanny X-Men (2013) #2\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104917\",\"name\":\"story
64
- from Uncanny X-Men (2013) #2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104922\",\"name\":\"cover
65
- from Uncanny X-Men (2013) #2 (TBD ARTIST VARIANT)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104923\",\"name\":\"story
66
- from Uncanny X-Men (2013) #2 (TBD ARTIST VARIANT)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104924\",\"name\":\"cover
67
- from Uncanny X-Men (2013) #3\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104925\",\"name\":\"story
68
- from Uncanny X-Men (2013) #3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104926\",\"name\":\"cover
69
- from Uncanny X-Men (2013) #3 (NOTO VARIANT)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/104927\",\"name\":\"story
70
- from Uncanny X-Men (2013) #3 (TBD ARTIST VARIANT)\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":40,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/17602/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46653\",\"name\":\"Uncanny
71
- X-Men (2013) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46660\",\"name\":\"Uncanny
72
- X-Men (2013) #1 (Quesada Sketch Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46656\",\"name\":\"Uncanny
73
- X-Men (2013) #1 (Young Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47136\",\"name\":\"Uncanny
74
- X-Men (2013) #1 (Deadpool 53 State Bird Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47314\",\"name\":\"Uncanny
75
- X-Men (2013) #1 (Hastings Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46657\",\"name\":\"Uncanny
76
- X-Men (2013) #1 (Dell'otto Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46655\",\"name\":\"Uncanny
77
- X-Men (2013) #1 (Blank Cover Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46658\",\"name\":\"Uncanny
78
- X-Men (2013) #1 (Quesada Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46661\",\"name\":\"Uncanny
79
- X-Men (2013) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46664\",\"name\":\"Uncanny
80
- X-Men (2013) #2 (Irving Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47867\",\"name\":\"Uncanny
81
- X-Men (2013) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46665\",\"name\":\"Uncanny
82
- X-Men (2013) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46666\",\"name\":\"Uncanny
83
- X-Men (2013) #3 (Noto Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46667\",\"name\":\"Uncanny
84
- X-Men (2013) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/48179\",\"name\":\"Uncanny
85
- X-Men (2013) #4 (2nd Printing Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46668\",\"name\":\"Uncanny
86
- X-Men (2013) #4 (Anka Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46669\",\"name\":\"Uncanny
87
- X-Men (2013) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46670\",\"name\":\"Uncanny
88
- X-Men (2013) #5 (Mcguinness Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46671\",\"name\":\"Uncanny
89
- X-Men (2013) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46672\",\"name\":\"Uncanny
90
- X-Men (2013) #7\"}],\"returned\":20},\"events\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/17602/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/317\",\"name\":\"Inhumanity\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/316\",\"name\":\"X-Men:
91
- Battle of the Atom\"}],\"returned\":2},\"next\":null,\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14914\",\"name\":\"Uncanny
92
- X-Men (2011 - 2012)\"}},{\"id\":2258,\"title\":\"Uncanny X-Men (1963 - 2011)\",\"description\":\"The
93
- flagship X-Men comic for over 40 years, Uncanny X-Men delivers action, suspense,
94
- and a hint of science fiction month in and month out. Follow the adventures
95
- of Professor Charles Xavier's team of mutants as they attempt to protect a
96
- world that hates and fears them. \",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2258\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1963,\"endYear\":2011,\"rating\":\"T+\",\"type\":\"ongoing\",\"modified\":\"2013-06-27T14:10:47-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/00/512527be6fba3\",\"extension\":\"jpg\"},\"creators\":{\"available\":372,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/807\",\"name\":\"Comicraft\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6694\",\"name\":\"Wes
97
- Abbot\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/314\",\"name\":\"Neal
98
- Adams\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1865\",\"name\":\"Diana
99
- Albers\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1937\",\"name\":\"Jon
100
- Babcock\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4472\",\"name\":\"Jg\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4165\",\"name\":\"Sr.\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1836\",\"name\":\"Terry
101
- Austin\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/263\",\"name\":\"Dick
102
- Ayers\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/779\",\"name\":\"Matt
103
- Banning\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2077\",\"name\":\"Hilary
104
- Barta\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/249\",\"name\":\"Art
105
- Adams\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1212\",\"name\":\"Dan
106
- Adkins\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/651\",\"name\":\"Brent
107
- Anderson\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1167\",\"name\":\"Ross
108
- Andru\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/219\",\"name\":\"Kia
109
- Asamiya\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/232\",\"name\":\"Chris
110
- Bachalo\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4444\",\"name\":\"Senen
111
- Antonio\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8320\",\"name\":\"Darryl
112
- Banks\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11\",\"name\":\"Chuck
113
- Austen\",\"role\":\"writer\"}],\"returned\":20},\"characters\":{\"available\":236,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009144\",\"name\":\"A.I.M.\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009146\",\"name\":\"Abomination
114
- (Emil Blonsky)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009149\",\"name\":\"Abyss\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010354\",\"name\":\"Adam
115
- Warlock\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010370\",\"name\":\"Alpha
116
- Flight\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009151\",\"name\":\"Amiko\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009156\",\"name\":\"Apocalypse\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009158\",\"name\":\"Arcade\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009160\",\"name\":\"Arclight\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009163\",\"name\":\"Aurora\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009164\",\"name\":\"Avalanche\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011766\",\"name\":\"Azazel
117
- (Mutant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009168\",\"name\":\"Banshee\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009596\",\"name\":\"Banshee
118
- (Theresa Rourke)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009169\",\"name\":\"Baron
119
- Strucker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009171\",\"name\":\"Bastion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009178\",\"name\":\"Beef\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009182\",\"name\":\"Bishop\"}],\"returned\":20},\"stories\":{\"available\":1311,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/690\",\"name\":\"1
120
- of 3\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/691\",\"name\":\"1
121
- of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/698\",\"name\":\"Cover
122
- #698\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/699\",\"name\":\"Interior
123
- #699\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/708\",\"name\":\"Cover
124
- #708\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/709\",\"name\":\"Interior
125
- #709\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/710\",\"name\":\"Cover
126
- #710\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/711\",\"name\":\"Interior
127
- #711\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/712\",\"name\":\"Cover
128
- #712\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/713\",\"name\":\"Interior
129
- #713\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/714\",\"name\":\"Cover
130
- #714\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/715\",\"name\":\"Interior
131
- #715\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/716\",\"name\":\"Cover
132
- #716\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/717\",\"name\":\"Interior
133
- #717\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/718\",\"name\":\"Cover
134
- #718\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/719\",\"name\":\"Interior
135
- #719\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/720\",\"name\":\"Cover
136
- #720\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/721\",\"name\":\"Interior
137
- #721\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/722\",\"name\":\"Cover
138
- #722\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/723\",\"name\":\"Interior
139
- #723\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":595,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13682\",\"name\":\"Uncanny
140
- X-Men (1963)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12413\",\"name\":\"Uncanny
141
- X-Men (1963) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12466\",\"name\":\"Uncanny
142
- X-Men (1963) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12477\",\"name\":\"Uncanny
143
- X-Men (1963) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12488\",\"name\":\"Uncanny
144
- X-Men (1963) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12499\",\"name\":\"Uncanny
145
- X-Men (1963) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12510\",\"name\":\"Uncanny
146
- X-Men (1963) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12521\",\"name\":\"Uncanny
147
- X-Men (1963) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12532\",\"name\":\"Uncanny
148
- X-Men (1963) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12543\",\"name\":\"Uncanny
149
- X-Men (1963) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12414\",\"name\":\"Uncanny
150
- X-Men (1963) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12425\",\"name\":\"Uncanny
151
- X-Men (1963) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12436\",\"name\":\"Uncanny
152
- X-Men (1963) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12447\",\"name\":\"Uncanny
153
- X-Men (1963) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12458\",\"name\":\"Uncanny
154
- X-Men (1963) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12461\",\"name\":\"Uncanny
155
- X-Men (1963) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12462\",\"name\":\"Uncanny
156
- X-Men (1963) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12463\",\"name\":\"Uncanny
157
- X-Men (1963) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12464\",\"name\":\"Uncanny
158
- X-Men (1963) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12465\",\"name\":\"Uncanny
159
- X-Men (1963) #19\"}],\"returned\":20},\"events\":{\"available\":15,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
160
- of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
161
- Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
162
- of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
163
- Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
164
- Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
165
- of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/252\",\"name\":\"Inferno\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
166
- Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/299\",\"name\":\"Messiah
167
- CompleX\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/263\",\"name\":\"Mutant
168
- Massacre\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
169
- Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
170
- Wars II\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
171
- Second Coming\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/280\",\"name\":\"X-Tinction
172
- Agenda\"}],\"returned\":15},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14914\",\"name\":\"Uncanny
173
- X-Men (2011 - 2012)\"},\"previous\":null},{\"id\":14914,\"title\":\"Uncanny
174
- X-Men (2011 - 2012)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14914\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/14914/uncanny_x-men_2011_-_2012?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2011,\"endYear\":2012,\"rating\":\"T+\",\"type\":\"ongoing\",\"modified\":\"2013-06-27T14:17:57-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/30/511c10a281821\",\"extension\":\"jpg\"},\"creators\":{\"available\":20,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/14914/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8571\",\"name\":\"Guru-eFX\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4306\",\"name\":\"Laura
175
- Martin\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1004\",\"name\":\"Daniel
176
- Acuna\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2879\",\"name\":\"Adam
177
- Kubert\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5015\",\"name\":\"Rodney
178
- Buchemi\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4150\",\"name\":\"Paco
179
- Diaz\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/120\",\"name\":\"Ron
180
- Garney\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/425\",\"name\":\"Greg
181
- Land\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/616\",\"name\":\"Jay
182
- Leisten\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/101\",\"name\":\"Carlos
183
- Pacheco\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/532\",\"name\":\"Brandon
184
- Peterson\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/448\",\"name\":\"Billy
185
- Tan\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8404\",\"name\":\"Dustin
186
- Weaver\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5251\",\"name\":\"Joe
187
- Caramagna\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/452\",\"name\":\"Chris
188
- Eliopoulos\",\"role\":\"Letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8901\",\"name\":\"Kieron
189
- Gillen\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11521\",\"name\":\"Greg
190
- Horn\",\"role\":\"Artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/360\",\"name\":\"Justin
191
- Ponsor\",\"role\":\"Colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/561\",\"name\":\"Wil
192
- Quintana\",\"role\":\"Colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/480\",\"name\":\"Cam
193
- Smith\",\"role\":\"Inker\"}],\"returned\":20},\"characters\":{\"available\":11,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/14914/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009165\",\"name\":\"Avengers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010813\",\"name\":\"Celestials\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009243\",\"name\":\"Colossus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009310\",\"name\":\"Emma
194
- Frost\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011428\",\"name\":\"Hope
195
- Summers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009447\",\"name\":\"Mister
196
- Sinister\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011360\",\"name\":\"Red
197
- Hulk\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009662\",\"name\":\"Thing\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":11},\"stories\":{\"available\":56,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/14914/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91093\",\"name\":\"Cover
198
- #91093\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91094\",\"name\":\"Interior
199
- #91094\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91095\",\"name\":\"Cover
200
- #91095\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91096\",\"name\":\"Interior
201
- #91096\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91097\",\"name\":\"Cover
202
- #91097\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91098\",\"name\":\"Interior
203
- #91098\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91099\",\"name\":\"Cover
204
- #91099\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91100\",\"name\":\"Interior
205
- #91100\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91101\",\"name\":\"Cover
206
- #91101\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91102\",\"name\":\"Interior
207
- #91102\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91103\",\"name\":\"Cover
208
- #91103\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91104\",\"name\":\"Interior
209
- #91104\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91105\",\"name\":\"Cover
210
- #91105\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91106\",\"name\":\"Interior
211
- #91106\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91107\",\"name\":\"Cover
212
- #91107\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91108\",\"name\":\"Interior
213
- #91108\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91109\",\"name\":\"Cover
214
- #91109\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91110\",\"name\":\"Interior
215
- #91110\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91111\",\"name\":\"Cover
216
- #91111\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91112\",\"name\":\"Interior
217
- #91112\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":26,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/14914/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40166\",\"name\":\"Uncanny
218
- X-Men (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41454\",\"name\":\"Uncanny
219
- X-Men (2011) #1 (Blank Cover Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41456\",\"name\":\"Uncanny
220
- X-Men (2011) #1 (Keown Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41455\",\"name\":\"Uncanny
221
- X-Men (2011) #1 (Cho Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40154\",\"name\":\"Uncanny
222
- X-Men (2011) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/42474\",\"name\":\"Uncanny
223
- X-Men (2011) #2 (2nd Printing Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41125\",\"name\":\"Uncanny
224
- X-Men (2011) #2 (Mc 50th Anniversary Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40159\",\"name\":\"Uncanny
225
- X-Men (2011) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40164\",\"name\":\"Uncanny
226
- X-Men (2011) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40158\",\"name\":\"Uncanny
227
- X-Men (2011) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/42112\",\"name\":\"Uncanny
228
- X-Men (2011) #5 (Venom Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40161\",\"name\":\"Uncanny
229
- X-Men (2011) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40157\",\"name\":\"Uncanny
230
- X-Men (2011) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40162\",\"name\":\"Uncanny
231
- X-Men (2011) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40156\",\"name\":\"Uncanny
232
- X-Men (2011) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40163\",\"name\":\"Uncanny
233
- X-Men (2011) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40160\",\"name\":\"Uncanny
234
- X-Men (2011) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40155\",\"name\":\"Uncanny
235
- X-Men (2011) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40152\",\"name\":\"Uncanny
236
- X-Men (2011) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40153\",\"name\":\"Uncanny
237
- X-Men (2011) #14\"}],\"returned\":20},\"events\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/14914/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
238
- VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/308\",\"name\":\"X-Men:
239
- Regenesis\"}],\"returned\":2},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/17602\",\"name\":\"Uncanny
240
- X-Men (2013 - Present)\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2258\",\"name\":\"Uncanny
241
- X-Men (1963 - 2011)\"}}]}}"
242
- http_version:
243
- recorded_at: Thu, 13 Feb 2014 18:47:24 GMT
244
- recorded_with: VCR 2.8.0
@@ -1,32 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/comics/1000000?apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c&ts=1392317244
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - 'Ultron v0.1.3: https://rubygems.org/gems/ultron'
14
- response:
15
- status:
16
- code: 404
17
- message: Not Found
18
- headers:
19
- Content-Type:
20
- - application/json
21
- Content-Length:
22
- - '57'
23
- Date:
24
- - Sat, 15 Feb 2014 20:34:41 GMT
25
- Connection:
26
- - keep-alive
27
- body:
28
- encoding: ASCII-8BIT
29
- string: "{\"code\":404,\"status\":\"We couldn't find that comic_issue\"}"
30
- http_version:
31
- recorded_at: Thu, 13 Feb 2014 18:47:24 GMT
32
- recorded_with: VCR 2.8.0
@@ -1,34 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/comics?apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c&offset=1000000&ts=1392317244
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - 'Ultron v0.1.2: https://rubygems.org/gems/ultron'
14
- response:
15
- status:
16
- code: 200
17
- message: OK
18
- headers:
19
- Etag:
20
- - c6221500e62a7317e759c6bd37130ee5c62c0cba
21
- Content-Type:
22
- - application/json
23
- Content-Length:
24
- - '150'
25
- Date:
26
- - Sat, 15 Feb 2014 18:07:41 GMT
27
- Connection:
28
- - keep-alive
29
- body:
30
- encoding: ASCII-8BIT
31
- string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"c6221500e62a7317e759c6bd37130ee5c62c0cba\",\"data\":{\"offset\":1000000,\"limit\":20,\"total\":31917,\"count\":0,\"results\":[]}}"
32
- http_version:
33
- recorded_at: Thu, 13 Feb 2014 18:47:24 GMT
34
- recorded_with: VCR 2.8.0
@@ -1,32 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/comics/1000000?apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c&ts=1392317244
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - 'Ultron v0.1.2: https://rubygems.org/gems/ultron'
14
- response:
15
- status:
16
- code: 404
17
- message: Not Found
18
- headers:
19
- Content-Type:
20
- - application/json
21
- Content-Length:
22
- - '57'
23
- Date:
24
- - Sat, 15 Feb 2014 18:07:42 GMT
25
- Connection:
26
- - keep-alive
27
- body:
28
- encoding: ASCII-8BIT
29
- string: "{\"code\":404,\"status\":\"We couldn't find that comic_issue\"}"
30
- http_version:
31
- recorded_at: Thu, 13 Feb 2014 18:47:24 GMT
32
- recorded_with: VCR 2.8.0
@@ -1,33 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/creators/186/characters?apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c&ts=1392317244
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - 'Ultron v0.1.3: https://rubygems.org/gems/ultron'
14
- response:
15
- status:
16
- code: 404
17
- message: Not Found
18
- headers:
19
- Content-Type:
20
- - application/json
21
- Content-Length:
22
- - '181'
23
- Date:
24
- - Sat, 15 Feb 2014 21:03:27 GMT
25
- Connection:
26
- - keep-alive
27
- body:
28
- encoding: ASCII-8BIT
29
- string: "{\"code\":\"ResourceNotFound\",\"message\":\"/v1/public/creators/186/characters?ts=1392317244&apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c
30
- does not exist\"}"
31
- http_version:
32
- recorded_at: Thu, 13 Feb 2014 18:47:24 GMT
33
- recorded_with: VCR 2.8.0
@@ -1,34 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/comics?apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c&offset=1000000&ts=1392317244
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - 'Ultron v0.1.3: https://rubygems.org/gems/ultron'
14
- response:
15
- status:
16
- code: 200
17
- message: OK
18
- headers:
19
- Etag:
20
- - c6221500e62a7317e759c6bd37130ee5c62c0cba
21
- Content-Type:
22
- - application/json
23
- Content-Length:
24
- - '150'
25
- Date:
26
- - Sat, 15 Feb 2014 20:34:41 GMT
27
- Connection:
28
- - keep-alive
29
- body:
30
- encoding: ASCII-8BIT
31
- string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"c6221500e62a7317e759c6bd37130ee5c62c0cba\",\"data\":{\"offset\":1000000,\"limit\":20,\"total\":31917,\"count\":0,\"results\":[]}}"
32
- http_version:
33
- recorded_at: Thu, 13 Feb 2014 18:47:24 GMT
34
- recorded_with: VCR 2.8.0
@@ -1,34 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/comics?apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c&offset=1000000&ts=1392317244
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - 'Ultron v0.1.1: https://rubygems.org/gems/ultron'
14
- response:
15
- status:
16
- code: 200
17
- message: OK
18
- headers:
19
- Etag:
20
- - c6221500e62a7317e759c6bd37130ee5c62c0cba
21
- Content-Type:
22
- - application/json
23
- Content-Length:
24
- - '150'
25
- Date:
26
- - Sat, 15 Feb 2014 16:23:02 GMT
27
- Connection:
28
- - keep-alive
29
- body:
30
- encoding: ASCII-8BIT
31
- string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"c6221500e62a7317e759c6bd37130ee5c62c0cba\",\"data\":{\"offset\":1000000,\"limit\":20,\"total\":31917,\"count\":0,\"results\":[]}}"
32
- http_version:
33
- recorded_at: Thu, 13 Feb 2014 18:47:24 GMT
34
- recorded_with: VCR 2.8.0