Skip to content

Commit bc1d7f9

Browse files
committed
Added podspec for version 0.6.
1 parent 5ac34dd commit bc1d7f9

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

MBProgressHUD.podspec

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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

0 commit comments

Comments
 (0)