forked from DeclarativeHub/ReactiveKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactiveKit.podspec
More file actions
18 lines (16 loc) · 789 Bytes
/
ReactiveKit.podspec
File metadata and controls
18 lines (16 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "ReactiveKit"
s.version = "3.7.5"
s.summary = "A Swift Reactive Programming Framework"
s.description = "ReactiveKit is a Swift framework for reactive and functional reactive programming."
s.homepage = "https://github.com/ReactiveKit/ReactiveKit"
s.license = 'MIT'
s.author = { "Srdan Rasic" => "srdan.rasic@gmail.com" }
s.source = { :git => "https://github.com/ReactiveKit/ReactiveKit.git", :tag => "v3.7.5" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'Sources/*.swift', 'ReactiveKit/*.{h,m}'
s.requires_arc = true
end