forked from fabianofrancesconi/FFCircularProgressView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFFCircularProgressView.podspec
More file actions
23 lines (20 loc) · 1.34 KB
/
FFCircularProgressView.podspec
File metadata and controls
23 lines (20 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "FFCircularProgressView"
s.version = "0.3"
s.summary = "An iOS 7-inspired blue circular progress view."
s.description = <<-DESC
This circular progress view is inspired by the new progress view in the App Store, iOS 7.
Also the colors are taken from the new mobile operative system by Apple Inc.
The progress view supports spinning and animates transition between progress 0 to 1.
DESC
s.homepage = "https://github.com/elbryan/FFCircularProgressView"
s.screenshots = "https://raw.github.com/elbryan/FFCircularProgressView/master/Media/ss1.png", "https://raw.github.com/elbryan/FFCircularProgressView/master/Media/ss2.png",
"https://raw.github.com/elbryan/FFCircularProgressView/master/Media/ss3.png", "https://raw.github.com/elbryan/FFCircularProgressView/master/Media/ss4.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Fabiano Francesconi" => "fabiano.francesconi@gmail.com" }
s.source = { :git => "https://github.com/Sander-Kornev/FFCircularProgressView.git", :tag => 'v0.3.1' }
s.platform = :ios
s.source_files = 'FFCircularProgressView/FFCircularProgressView/*.{h,m}'
s.frameworks = 'CoreGraphics', 'QuartzCore'
s.requires_arc = true
end