forked from RxSwiftCommunity/RxSwiftUtilities
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRxSwiftUtilities.podspec
21 lines (21 loc) · 927 Bytes
/
RxSwiftUtilities.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "RxSwiftUtilities"
s.version = "2.1.0"
s.summary = "Helpful classes and extensions for RxSwift"
s.description = <<-DESC
Helpful classes and extensions for RxSwift which don't belong in RxSwift core.
DESC
s.homepage = "https://github.com/RxSwiftCommunity/RxSwiftUtilities"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Jesse Farless" => "[email protected]" }
s.swift_version = "4.0"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/RxSwiftCommunity/RxSwiftUtilities.git", :tag => "#{s.version}" }
s.source_files = 'Source/Common/*.swift'
s.ios.source_files = 'Source/iOS/*.swift'
s.dependency "RxSwift", "~> 4.0"
s.dependency "RxCocoa", "~> 4.0"
end