[Add] ZJSDK 2.5.8.16
[CocoaPods.git] / Specs / 5 / a / c / DiscogsAPI / 1.0 / DiscogsAPI.podspec.json
blob2b420723f321f26ecf5da66b3d591eb9a2068bfe
2   "name": "DiscogsAPI",
3   "version": "1.0",
4   "summary": "An Objective-C interface for Discogs API v2.0.",
5   "description": "                    Features:\n\t\t\t\t\t- Handle OAuth process and store tokens in keychain.\n\t\t\t\t\t- Database support: Release, Master Release, Master Release Versions, Artist, Artist Releases, Label, All Label Releases, Search.\n\t\t\t\t\t- User support: Identify, Profile, Collection, Wantlist.\n\t\t\t\t\t- Image support.\n",
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.0"
14   },
15   "requires_arc": true,
16   "platforms": {
17     "ios": "7.1"
18   },
19   "source_files": "DiscogsAPI/**/*.{h,m}",
20   "dependencies": {
21     "RestKit": [
23     ],
24     "AFOAuth1Client": [
26     ]
27   },
28   "prefix_header_contents": "#import <Availability.h>\n\n#ifndef __IPHONE_5_0\n#warning \"This project uses features only available in iOS SDK 5.0 and later.\"\n#endif\n\n#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#import <Foundation/Foundation.h>\n#import <CoreData/CoreData.h>\n#endif\n\n#if __IPHONE_OS_VERSION_MIN_REQUIRED\n#import <SystemConfiguration/SystemConfiguration.h>\n#import <MobileCoreServices/MobileCoreServices.h>\n#else\n#import <SystemConfiguration/SystemConfiguration.h>\n#import <CoreServices/CoreServices.h>\n#endif\n\n// Make RestKit globally available\n#import <RestKit/RestKit.h>\n"