forked from bonebox/JPCActivityIndicatorButton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJPCActivityIndicatorButton.podspec
More file actions
24 lines (20 loc) · 1.11 KB
/
JPCActivityIndicatorButton.podspec
File metadata and controls
24 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "JPCActivityIndicatorButton"
s.version = "3.5.0"
s.summary = "An implementation of the progress control used in the App Store app with styling inspired by Google's material design."
s.description = <<-DESC
It is a drop in replacement for UIActivityIndicatorView and UIProgressView that tracks touch input like a UIButton. It may be useful in the following scenarios
* Replacement for UIActivityIndicatorView
* Replacement for UIProgressView
* Replacement for UIButton with Google Material Design styling
* To create a similar interaction as start and stopping downloads in the App Store app.
DESC
s.homepage = "https://github.com/jpchmura/JPCActivityIndicatorButton"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = 'Jon Chmura'
s.social_media_url = "http://twitter.com/jpchmura"
s.platform = :ios, "12.0"
s.swift_version = '5.1'
s.source = { :git => "https://github.com/Allogy/JPCActivityIndicatorButton.git", :tag => s.version.to_s }
s.source_files = "Sources/JPCActivityIndicatorButton/*.swift"
end