marvelite 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/README.md +11 -4
- data/lib/marvelite/api/config/v1.yml +37 -19
- data/lib/marvelite/version.rb +1 -1
- data/spec/fixtures/creators/creator.json +329 -0
- data/spec/fixtures/creators/creator_2.json +91 -0
- data/spec/fixtures/creators/creator_comics.json +3654 -0
- data/spec/fixtures/creators/creator_events.json +1021 -0
- data/spec/fixtures/creators/creator_series.json +5194 -0
- data/spec/fixtures/creators/creator_stories.json +1803 -0
- data/spec/fixtures/creators/creators.json +1309 -0
- data/spec/marvelite/api/client_creators_endpoints_spec.rb +118 -0
- metadata +26 -10
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 16d19808169b8963aa3ebea4bd9cfdb47c752c5b
         | 
| 4 | 
            +
              data.tar.gz: 5d16ff33769cd4f3febb31ef18d27b424acc2b2e
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 4d53422e7d9b2a5c9587fe6c47c47bab17588d7b198817dc6ac63673b9d121e2485ca28042166f1d094e6d1c9c242a65e4144870340c7c17ed67c0f879c65505
         | 
| 7 | 
            +
              data.tar.gz: 3f1d488133bf1dc17d83a78afa8d94498809df61e07c370980d4668308a90e3527a85e66730f97d6a9ff1cafbf2f2b7451f5cd1a5d6a5d778768f52925949a37
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,16 @@ | |
| 1 1 | 
             
            ## Changelog
         | 
| 2 2 |  | 
| 3 | 
            +
            ### 0.0.9
         | 
| 4 | 
            +
            * Adds the following endpoints (contributed by: [Patrick Hereford (@phereford)](https://github.com/phereford)):
         | 
| 5 | 
            +
              * retrieve creators by connecting to the API's `/creators` endpoint
         | 
| 6 | 
            +
              * retieve a creator by connecting to the API's `/creators/:id` enpoint
         | 
| 7 | 
            +
              * retrieve creator connecting to the API's `/creators/:id/comics` endpoint.
         | 
| 8 | 
            +
              * retrieve creator events by connecting to the API's `/creators/:id/events` endpoint.
         | 
| 9 | 
            +
              * retrieve creator series by connecting to the API's `/creators/:id/series` endpoint.
         | 
| 10 | 
            +
              * retrieve creator stories by connecting to the API's `/creators/:id/stories` endpoint.
         | 
| 11 | 
            +
            * Pinpoints dependencies versions.
         | 
| 12 | 
            +
             | 
| 13 | 
            +
             | 
| 3 14 | 
             
            ### 0.0.8
         | 
| 4 15 | 
             
            * Fixes a problem where the `Marvelite::API::Router` was replacing the value of its return path string when asked for a route. Thanks to [Patrick Hereford (@phereford)](https://github.com/phereford) for reporting the issue.
         | 
| 5 16 |  | 
    
        data/README.md
    CHANGED
    
    | @@ -1,9 +1,6 @@ | |
| 1 1 | 
             
            # Marvelite
         | 
| 2 2 |  | 
| 3 | 
            -
            Simple wrapper to communicate with the Marvel Comics API.
         | 
| 4 | 
            -
             | 
| 5 | 
            -
             | 
| 6 | 
            -
            > **Important:** This is a work in progress. There's only two endpoints to connect to. I am working into incorporating all of Marvel Comics API endpoints.
         | 
| 3 | 
            +
            Simple Ruby wrapper to communicate with the Marvel Comics API.
         | 
| 7 4 |  | 
| 8 5 | 
             
            ## Installation
         | 
| 9 6 |  | 
| @@ -57,6 +54,16 @@ client.comic(40128) | |
| 57 54 | 
             
            client.comic_characters(40128)
         | 
| 58 55 | 
             
            client.comic_characters(40128, :orderBy => 'name', :limit => 30, :offset => 20)
         | 
| 59 56 |  | 
| 57 | 
            +
            # fetch a list of creators
         | 
| 58 | 
            +
            client.creators
         | 
| 59 | 
            +
            client.creators(:lastName => 'Romita')
         | 
| 60 | 
            +
             | 
| 61 | 
            +
            # fetch a creator
         | 
| 62 | 
            +
            client.creators(214)
         | 
| 63 | 
            +
             | 
| 64 | 
            +
            # fetch a creator comics
         | 
| 65 | 
            +
            client.creator_comics(214)
         | 
| 66 | 
            +
             | 
| 60 67 | 
             
            # fetch a list of events
         | 
| 61 68 | 
             
            client.events
         | 
| 62 69 | 
             
            client.events(:name => 'Acts of Vengeance')
         | 
| @@ -35,62 +35,80 @@ | |
| 35 35 | 
             
              name: 'comic_stories'
         | 
| 36 36 | 
             
              path: '/public/comics/:id/stories'
         | 
| 37 37 | 
             
            13:
         | 
| 38 | 
            +
              name: 'creators'
         | 
| 39 | 
            +
              path: '/public/creators'
         | 
| 40 | 
            +
            14:
         | 
| 41 | 
            +
              name: 'creator'
         | 
| 42 | 
            +
              path: '/public/creators/:id'
         | 
| 43 | 
            +
            15:
         | 
| 44 | 
            +
              name: 'creator_comics'
         | 
| 45 | 
            +
              path: '/public/creators/:id/comics'
         | 
| 46 | 
            +
            16:
         | 
| 47 | 
            +
              name: 'creator_events'
         | 
| 48 | 
            +
              path: '/public/creators/:id/events'
         | 
| 49 | 
            +
            17:
         | 
| 50 | 
            +
              name: 'creator_series'
         | 
| 51 | 
            +
              path: '/public/creators/:id/series'
         | 
| 52 | 
            +
            18:
         | 
| 53 | 
            +
              name: 'creator_stories'
         | 
| 54 | 
            +
              path: '/public/creators/:id/stories'
         | 
| 55 | 
            +
            19:
         | 
| 38 56 | 
             
              name: 'events'
         | 
| 39 57 | 
             
              path: '/public/events'
         | 
| 40 | 
            -
             | 
| 58 | 
            +
            20:
         | 
| 41 59 | 
             
              name: 'event'
         | 
| 42 60 | 
             
              path: '/public/events/:id'
         | 
| 43 | 
            -
             | 
| 61 | 
            +
            21:
         | 
| 44 62 | 
             
              name: 'event_characters'
         | 
| 45 63 | 
             
              path: '/public/events/:id/characters'
         | 
| 46 | 
            -
             | 
| 64 | 
            +
            22:
         | 
| 47 65 | 
             
              name: 'event_creators'
         | 
| 48 66 | 
             
              path: '/public/events/:id/creators'
         | 
| 49 | 
            -
             | 
| 67 | 
            +
            23:
         | 
| 50 68 | 
             
              name: 'event_comics'
         | 
| 51 69 | 
             
              path: '/public/events/:id/comics'
         | 
| 52 | 
            -
             | 
| 70 | 
            +
            24:
         | 
| 53 71 | 
             
              name: 'event_stories'
         | 
| 54 72 | 
             
              path: '/public/events/:id/stories'
         | 
| 55 | 
            -
             | 
| 73 | 
            +
            25:
         | 
| 56 74 | 
             
              name: 'event_series'
         | 
| 57 75 | 
             
              path: '/public/events/:id/series'
         | 
| 58 | 
            -
             | 
| 76 | 
            +
            26:
         | 
| 59 77 | 
             
              name: 'series'
         | 
| 60 78 | 
             
              path: '/public/series'
         | 
| 61 | 
            -
             | 
| 79 | 
            +
            27:
         | 
| 62 80 | 
             
              name: 'serie'
         | 
| 63 81 | 
             
              path: '/public/series/:id'
         | 
| 64 | 
            -
             | 
| 82 | 
            +
            28:
         | 
| 65 83 | 
             
              name: 'series_characters'
         | 
| 66 84 | 
             
              path: '/public/series/:id/characters' 
         | 
| 67 | 
            -
             | 
| 85 | 
            +
            29:
         | 
| 68 86 | 
             
              name: 'series_comics'
         | 
| 69 87 | 
             
              path: '/public/series/:id/comics'
         | 
| 70 | 
            -
             | 
| 88 | 
            +
            30:
         | 
| 71 89 | 
             
              name: 'series_creators'
         | 
| 72 90 | 
             
              path: '/public/series/:id/creators'
         | 
| 73 | 
            -
             | 
| 91 | 
            +
            31:
         | 
| 74 92 | 
             
              name: 'series_events'
         | 
| 75 93 | 
             
              path: '/public/series/:id/events'
         | 
| 76 | 
            -
             | 
| 94 | 
            +
            32:
         | 
| 77 95 | 
             
              name: 'series_stories'
         | 
| 78 96 | 
             
              path: '/public/series/:id/stories'
         | 
| 79 | 
            -
             | 
| 97 | 
            +
            33:
         | 
| 80 98 | 
             
              name: 'stories'
         | 
| 81 99 | 
             
              path: '/public/stories'
         | 
| 82 | 
            -
             | 
| 100 | 
            +
            34:
         | 
| 83 101 | 
             
              name: 'story'
         | 
| 84 102 | 
             
              path: '/public/stories/:id'
         | 
| 85 | 
            -
             | 
| 103 | 
            +
            35:
         | 
| 86 104 | 
             
              name: 'story_characters'
         | 
| 87 105 | 
             
              path: '/public/stories/:id/characters'
         | 
| 88 | 
            -
             | 
| 106 | 
            +
            36:
         | 
| 89 107 | 
             
              name: 'story_comics'
         | 
| 90 108 | 
             
              path: '/public/stories/:id/comics'
         | 
| 91 | 
            -
             | 
| 109 | 
            +
            37:
         | 
| 92 110 | 
             
              name: 'story_creators'
         | 
| 93 111 | 
             
              path: '/public/stories/:id/creators'
         | 
| 94 | 
            -
             | 
| 112 | 
            +
            38:
         | 
| 95 113 | 
             
              name: 'story_events'
         | 
| 96 114 | 
             
              path: '/public/stories/:id/events'
         | 
    
        data/lib/marvelite/version.rb
    CHANGED
    
    
| @@ -0,0 +1,329 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "code": 200,
         | 
| 3 | 
            +
              "status": "Ok",
         | 
| 4 | 
            +
              "etag": "7f63fd3b02630c642c7d64894247ada4f2e60669",
         | 
| 5 | 
            +
              "data": {
         | 
| 6 | 
            +
                "offset": 0,
         | 
| 7 | 
            +
                "limit": 20,
         | 
| 8 | 
            +
                "total": 1,
         | 
| 9 | 
            +
                "count": 1,
         | 
| 10 | 
            +
                "results": [
         | 
| 11 | 
            +
                  {
         | 
| 12 | 
            +
                    "id": 593,
         | 
| 13 | 
            +
                    "firstName": "Lee",
         | 
| 14 | 
            +
                    "middleName": "",
         | 
| 15 | 
            +
                    "lastName": "Loughridge",
         | 
| 16 | 
            +
                    "suffix": "",
         | 
| 17 | 
            +
                    "fullName": "Lee Loughridge",
         | 
| 18 | 
            +
                    "modified": "2012-12-31T09:41:15-0500",
         | 
| 19 | 
            +
                    "thumbnail": {
         | 
| 20 | 
            +
                      "path": "http://i.annihil.us/u/prod/marvel/i/mg/6/70/4bc470880fb91",
         | 
| 21 | 
            +
                      "extension": "jpg"
         | 
| 22 | 
            +
                    },
         | 
| 23 | 
            +
                    "resourceURI": "http://gateway.marvel.com/v1/public/creators/593",
         | 
| 24 | 
            +
                    "comics": {
         | 
| 25 | 
            +
                      "available": 131,
         | 
| 26 | 
            +
                      "collectionURI": "http://gateway.marvel.com/v1/public/creators/593/comics",
         | 
| 27 | 
            +
                      "items": [
         | 
| 28 | 
            +
                        {
         | 
| 29 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/41265",
         | 
| 30 | 
            +
                          "name": "Age of Apocalypse (2011) #9"
         | 
| 31 | 
            +
                        },
         | 
| 32 | 
            +
                        {
         | 
| 33 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/41271",
         | 
| 34 | 
            +
                          "name": "Age of Apocalypse (2011) #10"
         | 
| 35 | 
            +
                        },
         | 
| 36 | 
            +
                        {
         | 
| 37 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/21513",
         | 
| 38 | 
            +
                          "name": "Black Panther (2005) #39"
         | 
| 39 | 
            +
                        },
         | 
| 40 | 
            +
                        {
         | 
| 41 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/21716",
         | 
| 42 | 
            +
                          "name": "Black Panther (2005) #40"
         | 
| 43 | 
            +
                        },
         | 
| 44 | 
            +
                        {
         | 
| 45 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/21943",
         | 
| 46 | 
            +
                          "name": "Black Panther (2005) #41"
         | 
| 47 | 
            +
                        },
         | 
| 48 | 
            +
                        {
         | 
| 49 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/45966",
         | 
| 50 | 
            +
                          "name": "Captain America (2012) #3"
         | 
| 51 | 
            +
                        },
         | 
| 52 | 
            +
                        {
         | 
| 53 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/46011",
         | 
| 54 | 
            +
                          "name": "Daredevil: Dark Nights (2013) #2"
         | 
| 55 | 
            +
                        },
         | 
| 56 | 
            +
                        {
         | 
| 57 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/2399",
         | 
| 58 | 
            +
                          "name": "Daredevil: Redemption (Trade Paperback)"
         | 
| 59 | 
            +
                        },
         | 
| 60 | 
            +
                        {
         | 
| 61 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/1645",
         | 
| 62 | 
            +
                          "name": "Daredevil: Redemption (2005) #2"
         | 
| 63 | 
            +
                        },
         | 
| 64 | 
            +
                        {
         | 
| 65 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/1739",
         | 
| 66 | 
            +
                          "name": "Daredevil: Redemption (2005) #3"
         | 
| 67 | 
            +
                        },
         | 
| 68 | 
            +
                        {
         | 
| 69 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/1847",
         | 
| 70 | 
            +
                          "name": "Daredevil: Redemption (2005) #4"
         | 
| 71 | 
            +
                        },
         | 
| 72 | 
            +
                        {
         | 
| 73 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/1953",
         | 
| 74 | 
            +
                          "name": "Daredevil: Redemption (2005) #5"
         | 
| 75 | 
            +
                        },
         | 
| 76 | 
            +
                        {
         | 
| 77 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/2059",
         | 
| 78 | 
            +
                          "name": "Daredevil: Redemption (2005) #6"
         | 
| 79 | 
            +
                        },
         | 
| 80 | 
            +
                        {
         | 
| 81 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/24947",
         | 
| 82 | 
            +
                          "name": "Deadpool (2008) #13"
         | 
| 83 | 
            +
                        },
         | 
| 84 | 
            +
                        {
         | 
| 85 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/24948",
         | 
| 86 | 
            +
                          "name": "Deadpool (2008) #14"
         | 
| 87 | 
            +
                        },
         | 
| 88 | 
            +
                        {
         | 
| 89 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/29820",
         | 
| 90 | 
            +
                          "name": "Deadpool (2008) #14 (2ND PRINTING VARIANT)"
         | 
| 91 | 
            +
                        },
         | 
| 92 | 
            +
                        {
         | 
| 93 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/28621",
         | 
| 94 | 
            +
                          "name": "Deadpool (1997) #900"
         | 
| 95 | 
            +
                        },
         | 
| 96 | 
            +
                        {
         | 
| 97 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/33959",
         | 
| 98 | 
            +
                          "name": "Deadpool Pulp (Hardcover)"
         | 
| 99 | 
            +
                        },
         | 
| 100 | 
            +
                        {
         | 
| 101 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/33695",
         | 
| 102 | 
            +
                          "name": "Deadpool Pulp (2010) #1"
         | 
| 103 | 
            +
                        },
         | 
| 104 | 
            +
                        {
         | 
| 105 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/comics/33694",
         | 
| 106 | 
            +
                          "name": "Deadpool Pulp (2010) #2"
         | 
| 107 | 
            +
                        }
         | 
| 108 | 
            +
                      ],
         | 
| 109 | 
            +
                      "returned": 20
         | 
| 110 | 
            +
                    },
         | 
| 111 | 
            +
                    "series": {
         | 
| 112 | 
            +
                      "available": 53,
         | 
| 113 | 
            +
                      "collectionURI": "http://gateway.marvel.com/v1/public/creators/593/series",
         | 
| 114 | 
            +
                      "items": [
         | 
| 115 | 
            +
                        {
         | 
| 116 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/15331",
         | 
| 117 | 
            +
                          "name": "Age of Apocalypse (2011 - Present)"
         | 
| 118 | 
            +
                        },
         | 
| 119 | 
            +
                        {
         | 
| 120 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/784",
         | 
| 121 | 
            +
                          "name": "Black Panther (2005 - 2008)"
         | 
| 122 | 
            +
                        },
         | 
| 123 | 
            +
                        {
         | 
| 124 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/16516",
         | 
| 125 | 
            +
                          "name": "Captain America (2012 - Present)"
         | 
| 126 | 
            +
                        },
         | 
| 127 | 
            +
                        {
         | 
| 128 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/17354",
         | 
| 129 | 
            +
                          "name": "Daredevil: Dark Nights (2013 - Present)"
         | 
| 130 | 
            +
                        },
         | 
| 131 | 
            +
                        {
         | 
| 132 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/791",
         | 
| 133 | 
            +
                          "name": "Daredevil: Redemption (2005)"
         | 
| 134 | 
            +
                        },
         | 
| 135 | 
            +
                        {
         | 
| 136 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/1332",
         | 
| 137 | 
            +
                          "name": "Daredevil: Redemption (2005)"
         | 
| 138 | 
            +
                        },
         | 
| 139 | 
            +
                        {
         | 
| 140 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/5701",
         | 
| 141 | 
            +
                          "name": "Deadpool (2008 - 2012)"
         | 
| 142 | 
            +
                        },
         | 
| 143 | 
            +
                        {
         | 
| 144 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/2005",
         | 
| 145 | 
            +
                          "name": "Deadpool (1997 - 2002)"
         | 
| 146 | 
            +
                        },
         | 
| 147 | 
            +
                        {
         | 
| 148 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/11063",
         | 
| 149 | 
            +
                          "name": "Deadpool Pulp (2010 - Present)"
         | 
| 150 | 
            +
                        },
         | 
| 151 | 
            +
                        {
         | 
| 152 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/11602",
         | 
| 153 | 
            +
                          "name": "Deadpool Pulp (2010)"
         | 
| 154 | 
            +
                        },
         | 
| 155 | 
            +
                        {
         | 
| 156 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/9045",
         | 
| 157 | 
            +
                          "name": "Deadpool Team-Up (2009 - 2011)"
         | 
| 158 | 
            +
                        },
         | 
| 159 | 
            +
                        {
         | 
| 160 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/877",
         | 
| 161 | 
            +
                          "name": "Friendly Neighborhood Spider-Man (2005 - 2007)"
         | 
| 162 | 
            +
                        },
         | 
| 163 | 
            +
                        {
         | 
| 164 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/1895",
         | 
| 165 | 
            +
                          "name": "Friendly Neighborhood Spider-Man Vol. 2: Mystery Date (2007)"
         | 
| 166 | 
            +
                        },
         | 
| 167 | 
            +
                        {
         | 
| 168 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/14248",
         | 
| 169 | 
            +
                          "name": "Fury Max (2011 - Present)"
         | 
| 170 | 
            +
                        },
         | 
| 171 | 
            +
                        {
         | 
| 172 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/7821",
         | 
| 173 | 
            +
                          "name": "Ghost Riders: Heavens on Fire (2009)"
         | 
| 174 | 
            +
                        },
         | 
| 175 | 
            +
                        {
         | 
| 176 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/6412",
         | 
| 177 | 
            +
                          "name": "Hulk Family (2008)"
         | 
| 178 | 
            +
                        },
         | 
| 179 | 
            +
                        {
         | 
| 180 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/167",
         | 
| 181 | 
            +
                          "name": "Hulk/Wolverine: 6 Hours (2003)"
         | 
| 182 | 
            +
                        },
         | 
| 183 | 
            +
                        {
         | 
| 184 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/2574",
         | 
| 185 | 
            +
                          "name": "Hulk/Wolverine: 6 Hours (2003)"
         | 
| 186 | 
            +
                        },
         | 
| 187 | 
            +
                        {
         | 
| 188 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/7427",
         | 
| 189 | 
            +
                          "name": "Hulk: Broken Worlds Book (2009)"
         | 
| 190 | 
            +
                        },
         | 
| 191 | 
            +
                        {
         | 
| 192 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/series/3762",
         | 
| 193 | 
            +
                          "name": "Incredible Hercules (2008 - 2010)"
         | 
| 194 | 
            +
                        }
         | 
| 195 | 
            +
                      ],
         | 
| 196 | 
            +
                      "returned": 20
         | 
| 197 | 
            +
                    },
         | 
| 198 | 
            +
                    "stories": {
         | 
| 199 | 
            +
                      "available": 134,
         | 
| 200 | 
            +
                      "collectionURI": "http://gateway.marvel.com/v1/public/creators/593/stories",
         | 
| 201 | 
            +
                      "items": [
         | 
| 202 | 
            +
                        {
         | 
| 203 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/1726",
         | 
| 204 | 
            +
                          "name": "5 of 6 xLS",
         | 
| 205 | 
            +
                          "type": "interiorStory"
         | 
| 206 | 
            +
                        },
         | 
| 207 | 
            +
                        {
         | 
| 208 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/1728",
         | 
| 209 | 
            +
                          "name": "4 of 6 xLS",
         | 
| 210 | 
            +
                          "type": "interiorStory"
         | 
| 211 | 
            +
                        },
         | 
| 212 | 
            +
                        {
         | 
| 213 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/1730",
         | 
| 214 | 
            +
                          "name": "6 of 6 xLS",
         | 
| 215 | 
            +
                          "type": "interiorStory"
         | 
| 216 | 
            +
                        },
         | 
| 217 | 
            +
                        {
         | 
| 218 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3529",
         | 
| 219 | 
            +
                          "name": "Interior #3529",
         | 
| 220 | 
            +
                          "type": "interiorStory"
         | 
| 221 | 
            +
                        },
         | 
| 222 | 
            +
                        {
         | 
| 223 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3531",
         | 
| 224 | 
            +
                          "name": "Interior #3531",
         | 
| 225 | 
            +
                          "type": "interiorStory"
         | 
| 226 | 
            +
                        },
         | 
| 227 | 
            +
                        {
         | 
| 228 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3533",
         | 
| 229 | 
            +
                          "name": "The Man-Thing movie prequel concludes with a horrific showdown with Man-Thing as you’ve never seen it before! Check out an incar",
         | 
| 230 | 
            +
                          "type": "interiorStory"
         | 
| 231 | 
            +
                        },
         | 
| 232 | 
            +
                        {
         | 
| 233 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3783",
         | 
| 234 | 
            +
                          "name": "6 of 6 - 6XLS",
         | 
| 235 | 
            +
                          "type": "interiorStory"
         | 
| 236 | 
            +
                        },
         | 
| 237 | 
            +
                        {
         | 
| 238 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3785",
         | 
| 239 | 
            +
                          "name": "Interior #3785",
         | 
| 240 | 
            +
                          "type": "interiorStory"
         | 
| 241 | 
            +
                        },
         | 
| 242 | 
            +
                        {
         | 
| 243 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3787",
         | 
| 244 | 
            +
                          "name": "Interior #3787",
         | 
| 245 | 
            +
                          "type": "interiorStory"
         | 
| 246 | 
            +
                        },
         | 
| 247 | 
            +
                        {
         | 
| 248 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3789",
         | 
| 249 | 
            +
                          "name": "Interior #3789",
         | 
| 250 | 
            +
                          "type": "interiorStory"
         | 
| 251 | 
            +
                        },
         | 
| 252 | 
            +
                        {
         | 
| 253 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3791",
         | 
| 254 | 
            +
                          "name": "With great power must come great responsibility… but when the entire Marvel Universe is recast as a world that is powerless… are",
         | 
| 255 | 
            +
                          "type": "interiorStory"
         | 
| 256 | 
            +
                        },
         | 
| 257 | 
            +
                        {
         | 
| 258 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3793",
         | 
| 259 | 
            +
                          "name": "Powerless nears its climactic conclusion as events surrounding Logan, Peter Parker, and Matt Murdock cause each of them to reach",
         | 
| 260 | 
            +
                          "type": "interiorStory"
         | 
| 261 | 
            +
                        },
         | 
| 262 | 
            +
                        {
         | 
| 263 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3931",
         | 
| 264 | 
            +
                          "name": "2 of 6",
         | 
| 265 | 
            +
                          "type": "interiorStory"
         | 
| 266 | 
            +
                        },
         | 
| 267 | 
            +
                        {
         | 
| 268 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3933",
         | 
| 269 | 
            +
                          "name": "3 of 6",
         | 
| 270 | 
            +
                          "type": "interiorStory"
         | 
| 271 | 
            +
                        },
         | 
| 272 | 
            +
                        {
         | 
| 273 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3935",
         | 
| 274 | 
            +
                          "name": "4 of 6",
         | 
| 275 | 
            +
                          "type": "interiorStory"
         | 
| 276 | 
            +
                        },
         | 
| 277 | 
            +
                        {
         | 
| 278 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3937",
         | 
| 279 | 
            +
                          "name": "5 of 6",
         | 
| 280 | 
            +
                          "type": "interiorStory"
         | 
| 281 | 
            +
                        },
         | 
| 282 | 
            +
                        {
         | 
| 283 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/3939",
         | 
| 284 | 
            +
                          "name": "6 of 6",
         | 
| 285 | 
            +
                          "type": "interiorStory"
         | 
| 286 | 
            +
                        },
         | 
| 287 | 
            +
                        {
         | 
| 288 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/4679",
         | 
| 289 | 
            +
                          "name": "3 of 3 - I Hate a Mystery",
         | 
| 290 | 
            +
                          "type": "interiorStory"
         | 
| 291 | 
            +
                        },
         | 
| 292 | 
            +
                        {
         | 
| 293 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/4981",
         | 
| 294 | 
            +
                          "name": "1 of 1 - Hulk",
         | 
| 295 | 
            +
                          "type": "interiorStory"
         | 
| 296 | 
            +
                        },
         | 
| 297 | 
            +
                        {
         | 
| 298 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/stories/4983",
         | 
| 299 | 
            +
                          "name": "1 of 1",
         | 
| 300 | 
            +
                          "type": "interiorStory"
         | 
| 301 | 
            +
                        }
         | 
| 302 | 
            +
                      ],
         | 
| 303 | 
            +
                      "returned": 20
         | 
| 304 | 
            +
                    },
         | 
| 305 | 
            +
                    "events": {
         | 
| 306 | 
            +
                      "available": 2,
         | 
| 307 | 
            +
                      "collectionURI": "http://gateway.marvel.com/v1/public/creators/593/events",
         | 
| 308 | 
            +
                      "items": [
         | 
| 309 | 
            +
                        {
         | 
| 310 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/events/318",
         | 
| 311 | 
            +
                          "name": "Dark Reign"
         | 
| 312 | 
            +
                        },
         | 
| 313 | 
            +
                        {
         | 
| 314 | 
            +
                          "resourceURI": "http://gateway.marvel.com/v1/public/events/269",
         | 
| 315 | 
            +
                          "name": "Secret Invasion"
         | 
| 316 | 
            +
                        }
         | 
| 317 | 
            +
                      ],
         | 
| 318 | 
            +
                      "returned": 2
         | 
| 319 | 
            +
                    },
         | 
| 320 | 
            +
                    "urls": [
         | 
| 321 | 
            +
                      {
         | 
| 322 | 
            +
                        "type": "detail",
         | 
| 323 | 
            +
                        "url": "http://marvel.com/comics/creators/593/lee_loughridge?utm_campaign=apiRef&utm_source=c60a23f273a09387e7d1ad4e6f828211"
         | 
| 324 | 
            +
                      }
         | 
| 325 | 
            +
                    ]
         | 
| 326 | 
            +
                  }
         | 
| 327 | 
            +
                ]
         | 
| 328 | 
            +
              }
         | 
| 329 | 
            +
            }
         |