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