forked from AFNetworking/AFIncrementalStore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAFIncrementalStore.podspec
More file actions
38 lines (30 loc) · 1.1 KB
/
Copy pathAFIncrementalStore.podspec
File metadata and controls
38 lines (30 loc) · 1.1 KB
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
Pod::Spec.new do |s|
s.name = "AFIncrementalStore"
s.version = "0.5.1"
s.summary = "Core Data Persistence with AFNetworking, Done Right."
s.homepage = "https://github.com/AFNetworking/AFIncrementalStore"
s.author = { "Mattt Thompson" => "m@mattt.me" }
s.license = 'MIT'
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source = { :git => "https://github.com/AFNetworking/AFIncrementalStore.git", :tag => "0.5.1" }
s.source_files = 'AFIncrementalStore/*.{h,m}'
s.framework = 'CoreData'
s.requires_arc = true
s.dependency 'AFNetworking', '~> 1.3.2'
s.dependency 'InflectorKit'
s.dependency 'TransformerKit'
s.prefix_header_contents = <<-EOS
#import <Availability.h>
#define _AFNETWORKING_PIN_SSL_CERTIFICATES_
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#import <Security/Security.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#import <Security/Security.h>
#endif
EOS
end