RxSwift/RxCocoa.podspec

30 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-04-10 02:54:44 +03:00
Pod::Spec.new do |s|
s.name = "RxCocoa"
2016-08-21 04:44:23 +03:00
s.version = "3.0.0.alpha.1"
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
2015-08-24 08:08:39 +03:00
s.source_files = 'RxCocoa/RxCocoa.h', 'RxCocoa/Common/**/*.{swift,h,m}'
2015-08-24 02:28:57 +03:00
s.ios.source_files = 'RxCocoa/iOS/**/*.swift'
s.osx.source_files = 'RxCocoa/OSX/**/*.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
2016-08-21 04:44:23 +03:00
s.dependency 'RxSwift', '~> 3.0.0.alpha.1'
2015-04-10 02:54:44 +03:00
end