-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASGradientCircularProgress.podspec
More file actions
21 lines (15 loc) · 1.03 KB
/
ASGradientCircularProgress.podspec
File metadata and controls
21 lines (15 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = "ASGradientCircularProgress"
spec.version = "0.0.4"
spec.summary = "This is a simple circular progress view, where the progress is shown using a gradient rather than a single colour."
spec.description = <<-DESC
ASGradientCircularProgress is a lightweight circular progress view with gradient. The progress view is animatable to any progress point within 100 i.e, from 0 to 100 percent. The circular progress view can also be used as a download progress for a download task.
DESC
spec.homepage = "https://github.com/arijits95/ASGradientCircularProgress"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Arijit" => "arijits95@gmail.com" }
spec.ios.deployment_target = "11.0"
spec.swift_version = "4.2"
spec.source = { :git => "https://github.com/arijits95/ASGradientCircularProgress.git", :tag => "#{spec.version}" }
spec.source_files = "ASGradientCircularProgress/ASGradientCircularProgress/Source/*"
end