-
Notifications
You must be signed in to change notification settings - Fork 9
/
MendeleyKit.podspec
53 lines (40 loc) · 1.73 KB
/
MendeleyKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Pod::Spec.new do |s|
s.name = "MendeleyKit"
s.version = "0.8.9"
s.summary = "The Mendeley Objective C client SDK."
s.description = <<-DESC
# MendeleyKit
The open source Mendeley Objective C Kit.
## Features
* Access to Mendeley REST API endpoints and handling of JSON responses
* Provide model classes for essential Mendeley objects such as Mendeley documents
* OAuth2 authentication and login as well as automatic handling of access refresh
DESC
s.homepage = "https://github.com/Mendeley/mendeleykit"
s.license = 'Apache Licence, Version 2.0'
s.authors = { "Mendeley iOS" => "[email protected]"}
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.source = { :git => "https://github.com/Mendeley/mendeleykit.git", :tag => "0.8.9" }
s.source_files = 'MendeleyKit', 'MendeleyKit/**/*.{h,m}'
s.exclude_files = 'MendeleyKit/MendeleyKitTests', 'MendeleyKit/MendeleyKitExample'
s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration', 'Security', 'Foundation'
s.prefix_header_contents = <<-EOS
#ifdef __OBJC__
#import <Security/Security.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#endif
#import "MendeleyLog.h"
#import "MendeleyGlobals.h"
#import "MendeleyError.h"
#import "MendeleyErrorManager.h"
#import "NSError+Exceptions.h"
#endif /* __OBJC__*/
EOS
end