RxSwift/RxCocoa.podspec

26 lines
838 B
Plaintext
Raw Normal View History

2015-04-10 02:54:44 +03:00
Pod::Spec.new do |s|
s.name = "RxCocoa"
2015-05-25 02:10:43 +03:00
s.version = "1.4"
2015-04-10 02:54:44 +03:00
s.summary = "RxSwift Cocoa extensions"
s.description = <<-DESC
* UI extensions
* NSURL extensions
* KVO extensions
DESC
s.homepage = "https://github.com/kzaher/RxSwift"
s.license = 'MIT'
s.author = { "Krunoslav Zaher" => "krunoslav.zaher@gmail.com" }
s.source = { :git => "https://github.com/kzaher/RxSwift.git", :tag => s.version.to_s }
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.9'
s.source_files = 'RxCocoa/RxCocoa/Common/**/*.swift'
s.ios.source_files = 'RxCocoa/RxCocoa/iOS/**/*.swift'
s.osx.source_files = 'RxCocoa/RxCocoa/OSX/**/*.swift'
2015-04-10 02:54:44 +03:00
s.dependency 'RxSwift'
end