forked from endSly/GSIndeterminateProgressBar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GSIndeterminateProgressBar.podspec
30 lines (27 loc) · 1.35 KB
/
GSIndeterminateProgressBar.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "GSIndeterminateProgressBar"
s.version = "0.1.0"
s.summary = "GSIndeterminateProgressView is a subclass of UIView that looks like UIProgressView but acts like UIActivityIndicatorView."
s.description = <<-DESC
GSIndeterminateProgressView look similar to UIProgressView using animation to show indeterminate progress.
Class interface seems to UIActivityIndicatorView.
DESC
s.homepage = "https://github.com/endSly/GSIndeterminateProgressBar"
s.screenshots = "https://github.com/endSly/GSIndeterminateProgressBar/raw/master/capture.gif"
s.license = 'MIT'
s.author = { "Endika Gutiérrez" => "me@endika.net" }
s.source = { :git => "https://github.com/endSly/GSIndeterminateProgressBar.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/endSly'
s.platform = :ios, '5.0'
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'Classes'
s.public_header_files = 'Classes/**/*.h'
end