diff --git a/JBWatchActivityIndicator.podspec b/JBWatchActivityIndicator.podspec new file mode 100644 index 0000000..44f3fe8 --- /dev/null +++ b/JBWatchActivityIndicator.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "JBWatchActivityIndicator" + 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 +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" + +end