forked from pkluz/PKHUD
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPKHUD.podspec
More file actions
15 lines (15 loc) · 793 Bytes
/
PKHUD.podspec
File metadata and controls
15 lines (15 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'PKHUD'
s.module_name = 'PKHUD'
s.version = '5.1.0'
s.summary = 'A Swift 4.2 based reimplementation of the Apple HUD (Volume, Ringer, Rotation,…) for iOS 8 and up'
s.homepage = 'https://github.com/hathway/PKHUD'
s.license = 'MIT'
s.author = { 'Philip Kluz' => 'Philip.Kluz@gmail.com' }
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source = { :git => 'https://github.com/hathway/PKHUD.git', :tag => s.version.to_s }
s.source_files = 'PKHUD/**/*.{h,swift}'
s.resources = 'PKHUD/*.xcassets'
end