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",
9 "Maxime Epain": "maxime.epain@gmail.com"
12 "git": "https://github.com/maxep/DiscogsAPI.git",
19 "source_files": "DiscogsAPI/**/*.{h,m}",
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"