forked from jdg/MBProgressHUD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MBProgressHUD.podspec
19 lines (19 loc) · 924 Bytes
/
MBProgressHUD.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "MBProgressHUD"
s.version = "0.9.1"
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' => '[email protected]' }
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