- Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathReactiveCoreData.podspec
More file actions
Latest commit
21 lines (17 loc) · 886 Bytes
/
Copy pathReactiveCoreData.podspec
File metadata and controls
21 lines (17 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.newdo |s|
s.name="ReactiveCoreData"
s.version="0.0.1"
s.summary="ReactiveCoreData (RCD) is an attempt to bring Core Data into the ReactiveCocoa (RAC) world."
s.homepage="https://github.com/apparentsoft/ReactiveCoreData.git"
s.author={"Jacob Gorban"=>"apparentsoft"}
s.source={:git=>"https://github.com/apparentsoft/ReactiveCoreData.git",:tag=>"#{s.version}"}
s.license='Simplified BSD License'
s.description="ReactiveCoreData (RCD) is an attempt to bring Core Data into the ReactiveCocoa (RAC) world."
s.requires_arc=true
s.ios.deployment_target='6.0'
s.osx.deployment_target='10.7'
s.source_files='ReactiveCoreData/*.{h,m}'
s.dependency'ReactiveCocoa'
s.ios.frameworks='Foundation','UIKit','CoreData'
s.osx.frameworks='Foundation','Cocoa','CoreData'
end