-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAGHUD.podspec
More file actions
21 lines (17 loc) · 770 Bytes
/
AGHUD.podspec
File metadata and controls
21 lines (17 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'AGHUD'
s.version = '1.2.0'
s.summary = 'An iOS activity indicator and toast view.'
s.description = <<-DESC
An iOS activity indicator and toast view. Like Loading and Toast.
DESC
s.homepage = 'https://github.com/Agenric/HUD'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'AgenricWon' => 'AgenricWon@gmail.com' }
s.source = { :git => 'https://github.com/Agenric/HUD.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.source_files = 'HUD/HUD.swift', 'HUD/HUDExtension.swift'
s.frameworks = 'UIKit', 'Foundation'
s.dependency 'SnapKit', '~> 5.0.0'
end