20 lines
924 B
Ruby
20 lines
924 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "MBProgressHUD"
|
|
s.version = "0.9.2"
|
|
s.summary = "An iOS activity indicator view."
|
|
s.description = <<-DESC
|
|
MBProgressHUD is an iOS drop-in class that displays a translucent HUD
|
|
with an indicator and/or labels while work is being done in a background thread.
|
|
The HUD is meant as a replacement for the undocumented, private UIKit UIProgressHUD
|
|
with some additional features.
|
|
DESC
|
|
s.homepage = "http://www.bukovinski.com"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { 'Matej Bukovinski' => 'matej@bukovinski.com' }
|
|
s.source = { :git => "https://github.com/matej/MBProgressHUD.git", :tag => s.version.to_s }
|
|
s.platform = :ios
|
|
s.source_files = '*.{h,m}'
|
|
s.framework = "CoreGraphics"
|
|
s.requires_arc = true
|
|
end
|