-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHUDHelper.podspec
More file actions
30 lines (24 loc) · 1.11 KB
/
HUDHelper.podspec
File metadata and controls
30 lines (24 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Be sure to run `pod lib lint HUDHelper.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'HUDHelper'
s.version = '0.5.1'
s.summary = 'A wrapper of method chaining for MBProgressHUD.'
s.description = <<-DESC
HUDHelper defines 'Indicator' and 'Toast' based on MBProgressHUD, the indicator acts as the default behaviour of MBProgressHUD, the toast will hide automatically.
DESC
s.homepage = 'https://github.com/xingheng/HUDHelper'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Will Han' => 'xingheng.hax@qq.com' }
s.source = { :git => 'https://github.com/xingheng/HUDHelper.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'HUDHelper/**/*'
s.public_header_files = 'HUDHelper/HUDHelper.h'
s.frameworks = 'UIKit'
s.dependency 'MBProgressHUD', '~> 1.0'
end