RxSwift/RxCocoa.podspec

32 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-04-10 02:54:44 +03:00
Pod::Spec.new do |s|
s.name = "RxCocoa"
2017-10-08 15:13:59 +03:00
s.version = "4.0.0-rc.0"
2015-04-10 02:54:44 +03:00
s.summary = "RxSwift Cocoa extensions"
s.description = <<-DESC
2015-12-20 03:28:29 +03:00
* UI extensions
* NSURL extensions
* KVO extensions
2015-04-10 02:54:44 +03:00
DESC
2015-09-01 13:21:06 +03:00
s.homepage = "https://github.com/ReactiveX/RxSwift"
2015-04-10 02:54:44 +03:00
s.license = 'MIT'
s.author = { "Krunoslav Zaher" => "krunoslav.zaher@gmail.com" }
2015-09-01 13:21:06 +03:00
s.source = { :git => "https://github.com/ReactiveX/RxSwift.git", :tag => s.version.to_s }
2015-04-10 02:54:44 +03:00
2015-05-21 21:48:01 +03:00
s.requires_arc = true
2015-04-10 02:54:44 +03:00
2015-05-21 21:48:01 +03:00
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
2015-10-04 13:22:30 +03:00
s.tvos.deployment_target = '9.0'
2015-05-21 21:48:01 +03:00
2017-04-09 16:17:26 +03:00
s.source_files = 'RxCocoa/RxCocoa.h', 'RxCocoa/*.swift', 'RxCocoa/Common/**/*.{swift,h,m}', 'RxCocoa/Traits/**/*.{swift,h,m}', 'RxCocoa/Foundation/**/*.{swift,h,m}', 'RxCocoa/Runtime/**/*.{swift,h,m}', 'Platform/**/*.swift'
2016-10-17 00:46:27 +03:00
s.exclude_files = 'RxCocoa/Platform/**/*.swift'
2015-08-24 02:28:57 +03:00
s.ios.source_files = 'RxCocoa/iOS/**/*.swift'
2016-10-20 01:03:41 +03:00
s.osx.source_files = 'RxCocoa/macOS/**/*.swift'
s.watchos.source_files = 'RxCocoa/iOS/**/*.swift'
2015-10-04 13:22:30 +03:00
s.tvos.source_files = 'RxCocoa/iOS/**/*.swift'
2015-04-10 02:54:44 +03:00
2017-10-08 15:13:59 +03:00
s.dependency 'RxSwift', '~> 4.0.0-rc.0'
2015-04-10 02:54:44 +03:00
end