Files
JBChartView/DZProgressController/1.0.0/DZProgressController.podspec
T
Zachary Waldowski 4df22519d8 [Add] DZProgressController 1.0.0.
Signed-off-by: Zachary Waldowski <zwaldowski@gmail.com>
2012-08-11 20:43:30 -04:00

18 lines
888 B
Ruby

Pod::Spec.new do |s|
s.name = 'DZProgressController'
s.platform = :ios, 5.0
s.version = '1.0.0'
s.license = 'MIT'
s.summary = 'A dead simple, drop-in HUD view for iOS.'
s.homepage = 'https://github.com/zwaldowski/DZProgressController'
s.author = { 'Zachary Waldowski' => 'zwaldowski@gmail.com' }
s.source = { :git => 'https://github.com/zwaldowski/DZProgressController.git', :tag => '1.0.0' }
s.description = 'DZProgressController is a drop-in iOS class that displays a translucent HUD with a ' \
'progress indicator and an optional label while work is being done. It is meant ' \
'as an easy-to-use replacement for the undocumented, private class UIProgressHUD.'
s.source_files = '*.{h,m}'
s.resources = 'Images/*.png'
s.framework = 'QuartzCore'
s.requires_arc = true
end