From b1e2360e491a432ea48fcf58a5bf1c7ff5962029 Mon Sep 17 00:00:00 2001 From: Rob Nugen Date: Sat, 10 Oct 2015 18:47:28 +0900 Subject: [PATCH 1/2] New format for specifying iOS target version Gleaned from http://blog.cocoapods.org/CocoaPods-0.39/ https://github.com/neonichu/Alamofire/blob/tvos/Alamofire.podspec#L11 --- UICountingLabel.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UICountingLabel.podspec b/UICountingLabel.podspec index e40515c..1b66ee6 100644 --- a/UICountingLabel.podspec +++ b/UICountingLabel.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { "Tim Gostony" => "dataxpress@gmail.com" } s.source = { :git => "https://github.com/dataxpress/UICountingLabel.git", :tag => s.version.to_s } - s.platform = :ios, '5.0' + s.ios.deployment_target = '5.0' s.source_files = 'UICountingLabel.{h,m}' s.exclude_files = 'Classes/Exclude' s.requires_arc = true From 5473ee0a4450415f662f3c864a21108913654398 Mon Sep 17 00:00:00 2001 From: Rob Nugen Date: Sat, 10 Oct 2015 18:48:46 +0900 Subject: [PATCH 2/2] Add support for TVOS to podspec http://blog.cocoapods.org/CocoaPods-0.39/ --- UICountingLabel.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/UICountingLabel.podspec b/UICountingLabel.podspec index 1b66ee6..d97e0d3 100644 --- a/UICountingLabel.podspec +++ b/UICountingLabel.podspec @@ -7,6 +7,7 @@ Pod::Spec.new do |s| s.author = { "Tim Gostony" => "dataxpress@gmail.com" } s.source = { :git => "https://github.com/dataxpress/UICountingLabel.git", :tag => s.version.to_s } s.ios.deployment_target = '5.0' + s.tvos.deployment_target = '9.0' s.source_files = 'UICountingLabel.{h,m}' s.exclude_files = 'Classes/Exclude' s.requires_arc = true