-
Notifications
You must be signed in to change notification settings - Fork 13
/
SLRESTfulCoreData.podspec
37 lines (31 loc) · 1.49 KB
/
SLRESTfulCoreData.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
Pod::Spec.new do |spec|
spec.name = 'SLRESTfulCoreData'
spec.version = '1.9.2'
spec.platform = :ios, '6.0'
spec.license = 'MIT'
spec.source = { :git => 'https://github.com/OliverLetterer/SLRESTfulCoreData.git', :tag => spec.version.to_s }
spec.frameworks = 'Foundation', 'UIKit', 'CoreData'
spec.requires_arc = true
spec.homepage = 'https://github.com/OliverLetterer/SLRESTfulCoreData'
spec.summary = 'Objc naming conventions, autogenerated accessors at runtime, URL substitutions and intelligent attribute mapping.'
spec.author = { 'Oliver Letterer' => 'oliver.letterer@gmail.com' }
spec.requires_arc = true
spec.source_files = 'SLRESTfulCoreData/SLRESTfulCoreData/*.{h,m}', 'SLRESTfulCoreData/SLRESTfulCoreData/**/*.{h,m}', 'SLRESTfulCoreData/SLRESTfulCoreData/Framework Additions/**/**/*.{h,m}', 'AFRESTfulCoreDataBackgroundQueue/*.{h,m}'
spec.dependency 'SLCoreDataStack', '~> 0.6.0'
spec.dependency 'AFNetworking', '~> 2.3.1'
spec.deprecated = true
spec.deprecated_in_favor_of = 'CloudBridge'
spec.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