[Add] ZJSDK 2.5.8.16
[CocoaPods.git] / Specs / 5 / a / c / DiscogsAPI / 1.6.0 / DiscogsAPI.podspec.json
blob73b85dce2fc8ba6a1f71e61a1f29e789286e63d5
2   "name": "DiscogsAPI",
3   "version": "1.6.0",
4   "summary": "An Objective-C interface for Discogs API v2.0.",
5   "description": "Features:\n- Supports OAuth process and store the token in keychain.\n               - Supports Discogs Auth.\n- Database support: Release, Master Release, Master Release Versions, Artist, Artist Releases, Label, All Label Releases, Search.\n- User support: Identify, Profile, Collection, Wantlist.\n               - Marketplace support: Price suggestions, Listings, Orders.\n- Image support.",
6   "homepage": "https://github.com/maxep/DiscogsAPI",
7   "license": "MIT",
8   "authors": {
9     "Maxime Epain": "maxime.epain@gmail.com"
10   },
11   "social_media_url": "https://twitter.com/MaximeEpain",
12   "source": {
13     "git": "https://github.com/maxep/DiscogsAPI.git",
14     "tag": "v1.6.0"
15   },
16   "documentation_url": "http://cocoadocs.org/docsets/DiscogsAPI",
17   "requires_arc": true,
18   "platforms": {
19     "ios": "8.0"
20   },
21   "ios": {
22     "frameworks": [
23       "CFNetwork",
24       "MobileCoreServices",
25       "SystemConfiguration"
26     ]
27   },
28   "osx": {
29     "frameworks": [
30       "CoreServices",
31       "SystemConfiguration"
32     ]
33   },
34   "source_files": "DiscogsAPI/*.{h,m}",
35   "default_subspecs": [
36     "Authentication",
37     "Database",
38     "User",
39     "Marketplace",
40     "Resource"
41   ],
42   "subspecs": [
43     {
44       "name": "Core",
45       "source_files": [
46         "DiscogsAPI/Core",
47         "DiscogsAPI/Configuration",
48         "AFOAuth1Client/AFOAuth1Client"
49       ],
50       "dependencies": {
51         "RestKit/ObjectMapping": [
52           "~> 0.27.0"
53         ],
54         "RestKit/Network": [
55           "~> 0.27.0"
56         ],
57         "DiscogsAPI/Mapping": [
59         ]
60       },
61       "prefix_header_contents": [
62         "#import <SystemConfiguration/SystemConfiguration.h>",
63         "#import <MobileCoreServices/MobileCoreServices.h>",
64         "#import <Security/Security.h>",
65         "#import <RestKit/RestKit.h>"
66       ],
67       "private_header_files": [
68         "DiscogsAPI/Core/DGHTTPClient.h",
69         "DiscogsAPI/Configuration/*.h",
70         "AFOAuth1Client/AFOAuth1Client/*.h"
71       ]
72     },
73     {
74       "name": "Authentication",
75       "source_files": [
76         "DiscogsAPI/Authentication",
77         "DiscogsAPI/Authentication/Identity",
78         "DiscogsAPI/Mapping/Authentication/**/*"
79       ],
80       "private_header_files": [
81         "DiscogsAPI/Authentication/DGAuthView.h",
82         "DiscogsAPI/Authentication/DGTokenStore.h",
83         "DiscogsAPI/Mapping/Authentication/**/*.h"
84       ],
85       "dependencies": {
86         "DiscogsAPI/Core": [
88         ]
89       }
90     },
91     {
92       "name": "Database",
93       "source_files": [
94         "DiscogsAPI/Database",
95         "DiscogsAPI/Database/Release",
96         "DiscogsAPI/Database/Artist",
97         "DiscogsAPI/Database/Label",
98         "DiscogsAPI/Database/Master",
99         "DiscogsAPI/Database/Search",
100         "DiscogsAPI/Database/Data",
101         "DiscogsAPI/Mapping/Database/**/*"
102       ],
103       "private_header_files": "DiscogsAPI/Mapping/Database/**/*.h",
104       "dependencies": {
105         "DiscogsAPI/Pagination": [
107         ]
108       }
109     },
110     {
111       "name": "User",
112       "source_files": [
113         "DiscogsAPI/User",
114         "DiscogsAPI/User/Profile",
115         "DiscogsAPI/User/Collection",
116         "DiscogsAPI/User/Wantlist",
117         "DiscogsAPI/Mapping/User/**/*"
118       ],
119       "private_header_files": "DiscogsAPI/Mapping/User/**/*.h",
120       "dependencies": {
121         "DiscogsAPI/Database": [
123         ]
124       }
125     },
126     {
127       "name": "Marketplace",
128       "source_files": [
129         "DiscogsAPI/Marketplace",
130         "DiscogsAPI/Marketplace/Price",
131         "DiscogsAPI/Marketplace/Listing",
132         "DiscogsAPI/Marketplace/Order",
133         "DiscogsAPI/Mapping/Marketplace/**/*"
134       ],
135       "private_header_files": "DiscogsAPI/Mapping/Marketplace/**/*.h",
136       "dependencies": {
137         "DiscogsAPI/User": [
139         ]
140       }
141     },
142     {
143       "name": "Pagination",
144       "source_files": [
145         "DiscogsAPI/Pagination",
146         "DiscogsAPI/Mapping/Pagination"
147       ],
148       "private_header_files": "DiscogsAPI/Mapping/Pagination/**/*.h",
149       "dependencies": {
150         "DiscogsAPI/Core": [
152         ]
153       }
154     },
155     {
156       "name": "Resource",
157       "source_files": "DiscogsAPI/Resource",
158       "dependencies": {
159         "DiscogsAPI/Core": [
161         ]
162       }
163     },
164     {
165       "name": "Mapping",
166       "source_files": "DiscogsAPI/Mapping",
167       "private_header_files": "DiscogsAPI/Mapping/*.h"
168     }
169   ]