-
Notifications
You must be signed in to change notification settings - Fork 9
/
SpinRxSwift.podspec
29 lines (24 loc) · 1.29 KB
/
SpinRxSwift.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
28
29
Pod::Spec.new do |s|
s.name = "SpinRxSwift"
s.version = "0.20.0"
s.swift_version = "5.2.2"
s.summary = "Spin is a tool whose only purpose is to help you build feedback loops called Spins"
s.description = <<-DESC
Spin is a tool to build feedback loops within a Swift based application allowing you to use a unified syntax whatever the underlying reactive programming framework and whatever Apple UI technology you use (RxSwift, ReactiveSwift, Combine and UIKit, AppKit, SwiftUI).
DESC
s.homepage = "https://github.com/Spinners/Spin.Swift"
s.screenshots = "https://raw.githubusercontent.com/Spinners/Spin.Swift/master/Resources/spin-logo.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Thibault Wittemberg" => "[email protected]" }
s.source = { :git => "https://github.com/Spinners/Spin.Swift.git", :tag => s.version.to_s }
s.social_media_url = "http://twitter.com/thwittem"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "3.0"
s.tvos.deployment_target = "9.0"
s.requires_arc = true
s.source_files = 'Sources/RxSwift/*.swift'
s.dependency 'RxSwift', '>= 5.1.1'
s.dependency 'RxRelay', '>= 5.1.1'
s.dependency 'SpinCommon', '>= 0.20.0'
end