forked from mhuusko5/Podspecs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactiveCocoa.podspec
More file actions
28 lines (21 loc) · 928 Bytes
/
ReactiveCocoa.podspec
File metadata and controls
28 lines (21 loc) · 928 Bytes
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
Pod::Spec.new do |s|
s.name = 'ReactiveCocoa'
s.version = '5.0.0-alpha.1'
s.summary = 'A framework for using ReactiveSwift with Apple\'s Cocoa frameworks.'
s.description = 'ReactiveCocoa (RAC) is a Cocoa framework built on top of ReactiveSwift. It provides APIs for using ReactiveSwift with Apple\'s Cocoa frameworks.'
s.author = 'ReactiveCocoa'
s.homepage = 'https://github.com/ReactiveCocoa/ReactiveCocoa'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.source = {
:git => 'https://github.com/ReactiveCocoa/ReactiveCocoa.git',
:commit => '631120c278ec7a71dc03ce98d42a7039f57da544'
# :tag => 'v#{s.version}'
}
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.framework = 'Foundation'
s.dependency 'ReactiveSwift', '~> 1.0.0-alpha.1'
s.source_files = 'ReactiveCocoa/*.swift'
end