[Add] ZJSDK 2.5.8.16
[CocoaPods.git] / Specs / 5 / a / c / DiscogsAPI / 1.2 / DiscogsAPI.podspec.json
blob30ed40c0a94d7d9128e4bbf55c65cba9b7cf6521
2   "name": "DiscogsAPI",
3   "version": "1.2",
4   "summary": "An Objective-C interface for Discogs API v2.0.",
5   "description": "Features:\n- Handle OAuth process and store tokens in keychain.\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   "source": {
12     "git": "https://github.com/maxep/DiscogsAPI.git",
13     "tag": "v1.2"
14   },
15   "requires_arc": true,
16   "platforms": {
17     "ios": "7.1"
18   },
19   "ios": {
20     "frameworks": [
21       "CFNetwork",
22       "MobileCoreServices",
23       "SystemConfiguration"
24     ]
25   },
26   "osx": {
27     "frameworks": [
28       "CoreServices",
29       "SystemConfiguration"
30     ]
31   },
32   "source_files": "DiscogsAPI/*.{h,m}",
33   "default_subspecs": [
34     "Authentication",
35     "Database",
36     "User",
37     "Resource"
38   ],
39   "subspecs": [
40     {
41       "name": "Core",
42       "source_files": "DiscogsAPI/Core"
43     },
44     {
45       "name": "Authentication",
46       "source_files": "DiscogsAPI/Authentication",
47       "dependencies": {
48         "DiscogsAPI/Core": [
50         ],
51         "AFOAuth1Client": [
52           "~> 1.0.0"
53         ]
54       },
55       "prefix_header_contents": [
56         "#import <SystemConfiguration/SystemConfiguration.h>",
57         "#import <MobileCoreServices/MobileCoreServices.h>"
58       ]
59     },
60     {
61       "name": "Database",
62       "source_files": [
63         "DiscogsAPI/Database",
64         "DiscogsAPI/Database/Release",
65         "DiscogsAPI/Database/Artist",
66         "DiscogsAPI/Database/Label",
67         "DiscogsAPI/Database/Master",
68         "DiscogsAPI/Database/Search",
69         "DiscogsAPI/Database/Data",
70         "DiscogsAPI/Mapping/Database/**/*"
71       ],
72       "dependencies": {
73         "DiscogsAPI/Pagination": [
75         ]
76       }
77     },
78     {
79       "name": "User",
80       "source_files": [
81         "DiscogsAPI/User",
82         "DiscogsAPI/User/Identity",
83         "DiscogsAPI/User/Profile",
84         "DiscogsAPI/User/Collection",
85         "DiscogsAPI/User/Wantlist",
86         "DiscogsAPI/Mapping/User/**/*"
87       ],
88       "dependencies": {
89         "DiscogsAPI/Pagination": [
91         ]
92       }
93     },
94     {
95       "name": "Pagination",
96       "source_files": [
97         "DiscogsAPI/Pagination",
98         "DiscogsAPI/Mapping/Pagination"
99       ],
100       "dependencies": {
101         "DiscogsAPI/Configuration": [
103         ]
104       }
105     },
106     {
107       "name": "Resource",
108       "source_files": "DiscogsAPI/Resource",
109       "dependencies": {
110         "DiscogsAPI/Configuration": [
112         ]
113       }
114     },
115     {
116       "name": "Configuration",
117       "source_files": "DiscogsAPI/Configuration",
118       "dependencies": {
119         "DiscogsAPI/Core": [
121         ],
122         "RestKit/ObjectMapping": [
123           "~> 0.25.0"
124         ],
125         "RestKit/Network": [
126           "~> 0.25.0"
127         ]
128       },
129       "prefix_header_contents": [
130         "#import <SystemConfiguration/SystemConfiguration.h>",
131         "#import <MobileCoreServices/MobileCoreServices.h>",
132         "#import <Security/Security.h>",
133         "#import <RestKit/RestKit.h>"
134       ]
135     }
136   ]