From 3cf26a1795e4715e5dea087848c48ed1258703d9 Mon Sep 17 00:00:00 2001 From: Ivan Bruel Date: Tue, 17 May 2016 15:04:55 +0100 Subject: [PATCH 1/3] Added podspec --- JBWatchActivityIndicator.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 JBWatchActivityIndicator.podspec diff --git a/JBWatchActivityIndicator.podspec b/JBWatchActivityIndicator.podspec new file mode 100644 index 0000000..2b13bdb --- /dev/null +++ b/JBWatchActivityIndicator.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "JBWatchActivityIndicator" + s.version = "1.0.0" + s.summary = "ActivityIndicator for Apple Watch" + s.description = <<-EOS +Unfortunately, the current version of WatchKit doesn't include an activity indicator +control (like UIKit's UIActivityIndicatorView), even though the Apple Watch displays +an indicator while our interface controllers are loading. + EOS + s.homepage = "https://github.com/mikeswason/JBWatchActivityIndicator" + s.author = "Mike Swanson" + s.watchos.deployment_target = '2.0' + s.source = { :git => "https://github.com/ivanbruel/JBWatchActivityIndicator", :tag => s.version } + s.source_files = "JBWatchActivityIndicator/JBWatchActivityIndicator.h", "JBWatchActivityIndicator/JBWatchActivityIndicator.m" + s.framework = "WatchKit UIKit" + +end From 2882bb8c6cf4fe783f94b9125766d07f35fc442f Mon Sep 17 00:00:00 2001 From: Ivan Bruel Date: Tue, 17 May 2016 15:05:28 +0100 Subject: [PATCH 2/3] Pod version update --- JBWatchActivityIndicator.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JBWatchActivityIndicator.podspec b/JBWatchActivityIndicator.podspec index 2b13bdb..595a4eb 100644 --- a/JBWatchActivityIndicator.podspec +++ b/JBWatchActivityIndicator.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "JBWatchActivityIndicator" - s.version = "1.0.0" + s.version = "1.0.1" s.summary = "ActivityIndicator for Apple Watch" s.description = <<-EOS Unfortunately, the current version of WatchKit doesn't include an activity indicator From 579ef609e0c57d1fc7d7013a3bcddaf4169a5fb5 Mon Sep 17 00:00:00 2001 From: Ivan Bruel Date: Tue, 17 May 2016 15:08:38 +0100 Subject: [PATCH 3/3] Fixed podspec --- JBWatchActivityIndicator.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JBWatchActivityIndicator.podspec b/JBWatchActivityIndicator.podspec index 595a4eb..44f3fe8 100644 --- a/JBWatchActivityIndicator.podspec +++ b/JBWatchActivityIndicator.podspec @@ -12,6 +12,6 @@ an indicator while our interface controllers are loading. s.watchos.deployment_target = '2.0' s.source = { :git => "https://github.com/ivanbruel/JBWatchActivityIndicator", :tag => s.version } s.source_files = "JBWatchActivityIndicator/JBWatchActivityIndicator.h", "JBWatchActivityIndicator/JBWatchActivityIndicator.m" - s.framework = "WatchKit UIKit" + s.framework = "WatchKit" end