From d6c2cfca8bf9fd6bf5be79664d00020a9457662d Mon Sep 17 00:00:00 2001 From: Orta Date: Sun, 10 May 2015 20:30:39 +0100 Subject: [PATCH 1/3] Remove iOS reference in podspec --- RxSwift.podspec | 1 - 1 file changed, 1 deletion(-) diff --git a/RxSwift.podspec b/RxSwift.podspec index aa9aabc5d..88b7d34fd 100644 --- a/RxSwift.podspec +++ b/RxSwift.podspec @@ -29,7 +29,6 @@ Pod::Spec.new do |s| s.author = { "Krunoslav Zaher" => "krunoslav.zaher@gmail.com" } s.source = { :git => "https://github.com/kzaher/RxSwift.git", :tag => s.version.to_s } - s.platform = :ios, '8.0' s.requires_arc = true s.source_files = 'RxSwift/RxSwift/**/*' From 74cc5f44e24d7bdde28f5e076da875dd15081a37 Mon Sep 17 00:00:00 2001 From: Orta Date: Sun, 10 May 2015 20:41:00 +0100 Subject: [PATCH 2/3] Only include swift files --- RxSwift.podspec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/RxSwift.podspec b/RxSwift.podspec index 88b7d34fd..9b3e329df 100644 --- a/RxSwift.podspec +++ b/RxSwift.podspec @@ -28,8 +28,7 @@ Pod::Spec.new do |s| 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 } - s.requires_arc = true - s.source_files = 'RxSwift/RxSwift/**/*' + s.source_files = 'RxSwift/RxSwift/**/*.swift' end From 9f93821b383017d69b74a723a8f9bd0965c803de Mon Sep 17 00:00:00 2001 From: Orta Date: Sun, 10 May 2015 22:04:29 +0100 Subject: [PATCH 3/3] [Podspec] Add specific versions --- RxSwift.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RxSwift.podspec b/RxSwift.podspec index 9b3e329df..e4b9b2091 100644 --- a/RxSwift.podspec +++ b/RxSwift.podspec @@ -29,6 +29,7 @@ Pod::Spec.new do |s| s.author = { "Krunoslav Zaher" => "krunoslav.zaher@gmail.com" } s.source = { :git => "https://github.com/kzaher/RxSwift.git", :tag => s.version.to_s } s.requires_arc = true - + s.ios.deployment_target = '8.0' + s.osx.deployment_target = '10.9' s.source_files = 'RxSwift/RxSwift/**/*.swift' end