[Add] ZMarkupParser 1.12.0
[CocoaPods.git] / Specs / 5 / a / c / DiscogsAPI / 1.6.1 / DiscogsAPI.podspec.json
blob5b56e28834f2885a5d7ea3cdf827f6934f586fbb
2   "name": "DiscogsAPI",
3   "version": "1.6.1",
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.1"
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/Identity/DGIdentity+Keychain.h",
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   ]