File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ Pod ::Spec . new do |s |
2+ s . name = "MBProgressHUD"
3+ s . version = "0.6"
4+ s . summary = "An iOS activity indicator view."
5+ s . description = <<-DESC
6+ MBProgressHUD is an iOS drop-in class that displays a translucent HUD
7+ with an indicator and/or labels while work is being done in a background thread.
8+ The HUD is meant as a replacement for the undocumented, private UIKit UIProgressHUD
9+ with some additional features.
10+ DESC
11+ s . homepage = "http://www.bukovinski.com"
12+ s . screenshots = [ "http://dl.dropbox.com/u/378729/MBProgressHUD/1.png" ,
13+ "http://dl.dropbox.com/u/378729/MBProgressHUD/2.png" ,
14+ "http://dl.dropbox.com/u/378729/MBProgressHUD/3.png" ,
15+ "http://dl.dropbox.com/u/378729/MBProgressHUD/4.png" ,
16+ "http://dl.dropbox.com/u/378729/MBProgressHUD/5.png" ,
17+ "http://dl.dropbox.com/u/378729/MBProgressHUD/6.png" ,
18+ "http://dl.dropbox.com/u/378729/MBProgressHUD/7.png" ]
19+ s . license = { :type => 'MIT' , :file => 'LICENSE' }
20+ s . author = { 'Matej Bukovinski' => 'matej@bukovinski.com' }
21+ s . source = { :git => "https://github.com/matej/MBProgressHUD.git" , :tag => s . version . to_s }
22+ s . platform = :ios
23+ s . source_files = '*.{h,m}'
24+ s . framework = "CoreGraphics"
25+ s . requires_arc = true
26+ end
You can’t perform that action at this time.
0 commit comments