-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathEAColourfulProgressView.podspec
More file actions
22 lines (20 loc) · 1.2 KB
/
Copy pathEAColourfulProgressView.podspec
File metadata and controls
22 lines (20 loc) · 1.2 KB
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 = "EAColourfulProgressView"
s.version = "0.1.0"
s.summary = "A simple Progress View that allows colour changing via Interface Builder"
s.description = <<-DESC
A progress view that generates a colour within two colours, depending on its
its current value. All the values are customizable within Interface Builder,
through the usage of IBInspectable, and the custom view can be seen with
live rendering via IBDesignable.
DESC
s.homepage = "https://github.com/Eddpt/EAColourfulProgressView"
s.license = 'MIT'
s.author = { "Edgar Antunes" => "Eddpt@users.noreply.github.com" }
s.source = { :git => "https://github.com/Eddpt/EAColourfulProgressView.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.screenshots = "https://raw.githubusercontent.com/Eddpt/EAColourfulProgressView/master/demo.gif", "https://raw.githubusercontent.com/Eddpt/EAColourfulProgressView/master/IBInspectable.png"
s.requires_arc = true
s.source_files = 'EAColourfulProgressView/*.{h,m}'
s.frameworks = 'UIKit'
end