forked from sfcd/SFProgressCircle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SFProgressCircle.podspec
22 lines (22 loc) · 1.17 KB
/
SFProgressCircle.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "SFProgressCircle"
s.version = "1.0.5"
s.summary = "A circular gradient progress view implementation for iOS (supports partial circle)"
s.description = <<-DESC
A circular gradient progress view implementation for iOS (supports partial circle)
* Perfect circular gradient.
* Possibility to set both startColor and endColor.
* Possibility to set both startAngle and endAngle.
* Possibility to set lineWidth.
* Possibility to set progress with or without animation.
DESC
s.homepage = "https://github.com/sfcd/SFProgressCircle.git"
s.screenshots = "https://raw.githubusercontent.com/sfcd/SFProgressCircle/master/Example/Resources/scr.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "SFÇD" => "[email protected]" }
s.source = { :git => "https://github.com/sfcd/SFProgressCircle.git", :tag => s.version }
s.platform = :ios, '8.0'
s.requires_arc = true
s.frameworks = 'UIKit', 'QuartzCore', 'CoreGraphics'
s.source_files = 'Source/*.{h,m}'
end