-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathReactiveFeedback.podspec
More file actions
25 lines (20 loc) · 933 Bytes
/
ReactiveFeedback.podspec
File metadata and controls
25 lines (20 loc) · 933 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
Pod::Spec.new do |s|
s.name = "ReactiveFeedback"
s.version = "0.9.0"
s.summary = "Unidirectional reactive architecture"
s.description = <<-DESC
A unidirectional data flow µframework, built on top of ReactiveSwift.
DESC
s.homepage = "https://github.com/Babylonpartners/ReactiveFeedback/"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Babylon iOS" => "ios.development@babylonhealth.com" }
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '12.0'
s.watchos.deployment_target = '9.0'
s.tvos.deployment_target = '13.0'
s.source = { :git => "https://github.com/Babylonpartners/ReactiveFeedback.git", :tag => "#{s.version}" }
s.source_files = "ReactiveFeedback/*.{swift}"
s.cocoapods_version = ">= 1.11.3"
s.swift_versions = ["5.0", "5.1"]
s.dependency "ReactiveSwift", "~> 7.1.1"
end