[Add] ZJSDK 2.5.8.16
[CocoaPods.git] / Specs / 5 / a / c / DiscogsAPI / 1.6.2 / DiscogsAPI.podspec.json
blob585222c16480fe3a2571ec10c351bd0ad11c2893
2   "name": "DiscogsAPI",
3   "version": "1.6.2",
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": "1.6.2"
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         "DiscogsAPI/Authentication/Identity"
50       ],
51       "prefix_header_contents": [
52         "#import <SystemConfiguration/SystemConfiguration.h>",
53         "#import <MobileCoreServices/MobileCoreServices.h>",
54         "#import <Security/Security.h>",
55         "#import <RestKit/RestKit.h>"
56       ],
57       "private_header_files": [
58         "DiscogsAPI/Core/DGHTTPClient.h",
59         "DiscogsAPI/Configuration/*.h",
60         "AFOAuth1Client/AFOAuth1Client/*.h",
61         "DiscogsAPI/Authentication/Identity/DGIdentity+Keychain.h"
62       ],
63       "dependencies": {
64         "DiscogsAPI/Mapping": [
66         ],
67         "RestKit/ObjectMapping": [
68           "~> 0.27.0"
69         ],
70         "RestKit/Network": [
71           "~> 0.27.0"
72         ]
73       }
74     },
75     {
76       "name": "Authentication",
77       "source_files": [
78         "DiscogsAPI/Authentication",
79         "DiscogsAPI/Mapping/Authentication/**/*"
80       ],
81       "private_header_files": [
82         "DiscogsAPI/Authentication/DGAuthView.h",
83         "DiscogsAPI/Authentication/DGTokenStore.h",
84         "DiscogsAPI/Mapping/Authentication/**/*.h"
85       ],
86       "dependencies": {
87         "DiscogsAPI/Core": [
89         ]
90       }
91     },
92     {
93       "name": "Database",
94       "source_files": [
95         "DiscogsAPI/Database",
96         "DiscogsAPI/Database/Release",
97         "DiscogsAPI/Database/Artist",
98         "DiscogsAPI/Database/Label",
99         "DiscogsAPI/Database/Master",
100         "DiscogsAPI/Database/Search",
101         "DiscogsAPI/Database/Data",
102         "DiscogsAPI/Mapping/Database/**/*"
103       ],
104       "private_header_files": "DiscogsAPI/Mapping/Database/**/*.h",
105       "dependencies": {
106         "DiscogsAPI/Pagination": [
108         ]
109       }
110     },
111     {
112       "name": "User",
113       "source_files": [
114         "DiscogsAPI/User",
115         "DiscogsAPI/User/Profile",
116         "DiscogsAPI/User/Collection",
117         "DiscogsAPI/User/Wantlist",
118         "DiscogsAPI/Mapping/User/**/*"
119       ],
120       "private_header_files": "DiscogsAPI/Mapping/User/**/*.h",
121       "dependencies": {
122         "DiscogsAPI/Database": [
124         ]
125       }
126     },
127     {
128       "name": "Marketplace",
129       "source_files": [
130         "DiscogsAPI/Marketplace",
131         "DiscogsAPI/Marketplace/Price",
132         "DiscogsAPI/Marketplace/Listing",
133         "DiscogsAPI/Marketplace/Order",
134         "DiscogsAPI/Mapping/Marketplace/**/*"
135       ],
136       "private_header_files": "DiscogsAPI/Mapping/Marketplace/**/*.h",
137       "dependencies": {
138         "DiscogsAPI/User": [
140         ]
141       }
142     },
143     {
144       "name": "Pagination",
145       "source_files": [
146         "DiscogsAPI/Pagination",
147         "DiscogsAPI/Mapping/Pagination"
148       ],
149       "private_header_files": "DiscogsAPI/Mapping/Pagination/**/*.h",
150       "dependencies": {
151         "DiscogsAPI/Core": [
153         ]
154       }
155     },
156     {
157       "name": "Resource",
158       "source_files": "DiscogsAPI/Resource",
159       "dependencies": {
160         "DiscogsAPI/Core": [
162         ]
163       }
164     },
165     {
166       "name": "Mapping",
167       "source_files": "DiscogsAPI/Mapping",
168       "private_header_files": "DiscogsAPI/Mapping/*.h"
169     }
170   ]