forked from jdg/MBProgressHUD
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMBProgressHUD.podspec
More file actions
Latest commit
19 lines (19 loc) · 922 Bytes
/
Copy pathMBProgressHUD.podspec
File metadata and controls
19 lines (19 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.newdo |s|
s.name="MBProgressHUD"
s.version="0.8"
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