forked from SVProgressHUD/SVProgressHUD
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSVProgressHUD.podspec
More file actions
18 lines (16 loc) · 795 Bytes
/
SVProgressHUD.podspec
File metadata and controls
18 lines (16 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'SVProgressHUD'
s.version = '0.8'
s.platform = :ios
s.license = 'MIT'
s.summary = 'A clean and lightweight progress HUD for your iOS app.'
s.homepage = 'http://samvermette.com/199'
s.author = { 'Sam Vermette' => '[email protected]' }
s.source = { :git => 'https://github.com/samvermette/SVProgressHUD.git', :tag => '0.8' }
s.description = 'SVProgressHUD is an easy-to-use, clean and lightweight progress HUD for iOS. It’s a simplified and prettified alternative to the popular MBProgressHUD. The success and error icons are from Glyphish.'
s.source_files = 'SVProgressHUD/*.{h,m}'
s.preserve_paths = 'Demo'
s.framework = 'QuartzCore'
s.resources = 'SVProgressHUD/SVProgressHUD.bundle'
s.requires_arc = true
end