[Add] ZJSDK 2.5.8.16
[CocoaPods.git] / Specs / 5 / a / c / DiscogsAPI / 1.5.0 / DiscogsAPI.podspec.json
blob06f6472204b3e9dd42ca75780e7b01c59d146732
2   "name": "DiscogsAPI",
3   "version": "1.5.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- 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.5.0"
15   },
16   "documentation_url": "http://cocoadocs.org/docsets/DiscogsAPI",
17   "requires_arc": true,
18   "platforms": {
19     "ios": "7.1"
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       ],
49       "dependencies": {
50         "AFOAuth1Client": [
51           "~> 1.0.0"
52         ],
53         "RestKit/ObjectMapping": [
54           "~> 0.26.0"
55         ],
56         "RestKit/Network": [
57           "~> 0.26.0"
58         ]
59       },
60       "prefix_header_contents": [
61         "#import <SystemConfiguration/SystemConfiguration.h>",
62         "#import <MobileCoreServices/MobileCoreServices.h>",
63         "#import <Security/Security.h>",
64         "#import <RestKit/RestKit.h>"
65       ]
66     },
67     {
68       "name": "Authentication",
69       "source_files": "DiscogsAPI/Authentication",
70       "dependencies": {
71         "DiscogsAPI/Core": [
73         ]
74       }
75     },
76     {
77       "name": "Database",
78       "source_files": [
79         "DiscogsAPI/Database",
80         "DiscogsAPI/Database/Release",
81         "DiscogsAPI/Database/Artist",
82         "DiscogsAPI/Database/Label",
83         "DiscogsAPI/Database/Master",
84         "DiscogsAPI/Database/Search",
85         "DiscogsAPI/Database/Data",
86         "DiscogsAPI/Mapping/Database/**/*"
87       ],
88       "dependencies": {
89         "DiscogsAPI/Pagination": [
91         ]
92       }
93     },
94     {
95       "name": "User",
96       "source_files": [
97         "DiscogsAPI/User",
98         "DiscogsAPI/User/Identity",
99         "DiscogsAPI/User/Profile",
100         "DiscogsAPI/User/Collection",
101         "DiscogsAPI/User/Wantlist",
102         "DiscogsAPI/Mapping/User/**/*"
103       ],
104       "dependencies": {
105         "DiscogsAPI/Database": [
107         ]
108       }
109     },
110     {
111       "name": "Marketplace",
112       "source_files": [
113         "DiscogsAPI/Marketplace",
114         "DiscogsAPI/Marketplace/Price",
115         "DiscogsAPI/Mapping/Marketplace/**/*"
116       ],
117       "dependencies": {
118         "DiscogsAPI/Pagination": [
120         ]
121       }
122     },
123     {
124       "name": "Pagination",
125       "source_files": [
126         "DiscogsAPI/Pagination",
127         "DiscogsAPI/Mapping/Pagination"
128       ],
129       "dependencies": {
130         "DiscogsAPI/Core": [
132         ]
133       }
134     },
135     {
136       "name": "Resource",
137       "source_files": "DiscogsAPI/Resource",
138       "dependencies": {
139         "DiscogsAPI/Core": [
141         ]
142       }
143     }
144   ]