-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathASProgressPopUpView.podspec
20 lines (19 loc) · 1.05 KB
/
ASProgressPopUpView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "ASProgressPopUpView"
s.version = "0.9"
s.summary = "A progress view showing percentage complete in an animated popUpView"
s.description = <<-DESC
* Customize: font, font color, background color, corner radius
* Option to animate background color and progress bar color as value changes
* Optional dataSource protocol to fully customize label text
DESC
s.homepage = "https://github.com/alskipp/ASProgressPopUpView"
s.screenshots = "http://alskipp.github.io/ASProgressPopUpView/img/screenshot1.gif"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Al Skipp" => "[email protected]" }
s.social_media_url = 'https://twitter.com/al_skipp'
s.platform = :ios, '8.0'
s.source = { :git => "https://github.com/alskipp/ASProgressPopUpView.git", :tag => "0.9" }
s.source_files = 'ASProgressPopUpView'
s.requires_arc = true
end