forked from yannickl/YLProgressBar
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathYLProgressBar.podspec
More file actions
15 lines (15 loc) · 809 Bytes
/
YLProgressBar.podspec
File metadata and controls
15 lines (15 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'YLProgressBar'
s.version = '3.8.0'
s.platform = :ios, '5.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'UIProgressView replacement with an highly and fully customizable animated progress bar in pure Core Graphics'
s.homepage = 'https://github.com/yannickl/YLProgressBar'
s.authors = { 'Yannick Loriot' => 'contact@yannickloriot.com' }
s.social_media_url = "https://twitter.com/yannickloriot"
s.source = { :git => 'https://github.com/yannickl/YLProgressBar.git',
:tag => s.version.to_s }
s.source_files = ['YLProgressBar/YLProgressBar.{h,m}']
s.frameworks = 'UIKit', 'Foundation', 'CoreGraphics'
s.requires_arc = true
end