-
Notifications
You must be signed in to change notification settings - Fork 1
/
fosrest.podspec
27 lines (22 loc) · 1.08 KB
/
fosrest.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
Pod::Spec.new do |s|
s.name = "fosrest"
s.module_name = "FOSRest"
s.version = "0.4.2"
s.summary = "A group of classes for connecting CoreData to REST services."
s.homepage = "https://github.com/foscomputerservices/fosrest"
s.license = 'MIT'
s.author = { "David Hunt" => "[email protected]" }
s.source = { :git => "https://github.com/foscomputerservices/fosrest.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/foscompsvcs'
s.platform = :ios, '7.1'
s.requires_arc = true
# TODO: Restore lm,ym to this list when CocoaPods issue
# (https://github.com/CocoaPods/CocoaPods/issues/3127) is resolved.
# s.source_files = 'Pod/Classes/**/*.{h,m,lm,ym}'
s.source_files = 'Pod/Classes/**/*.{h,m}'
s.public_header_files = 'Pod/Classes/Public/**/*.h'
s.private_header_files = 'Pod/Classes/Private/**/*.h'
s.resources = 'Pod/Assets/*.{xcdatamodeld,xcdatamodel,adaptermap}'
s.preserve_paths = 'Pod/Classes/Private/*'
s.frameworks = 'Foundation', 'CoreData'
end