forked from pkluz/PKHUD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKHUD.podspec
16 lines (16 loc) · 851 Bytes
/
PKHUD.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'PKHUD'
s.module_name = 'PKHUD'
s.version = '5.3.0'
s.summary = 'A Swift 3 based reimplementation of the Apple HUD (Volume, Ringer, Rotation,…) for iOS 8 and up'
s.homepage = 'https://github.com/pkluz/PKHUD'
s.license = 'MIT'
s.author = { 'Philip Kluz' => '[email protected]' }
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source = { :git => 'https://github.com/pkluz/PKHUD.git', :tag => s.version.to_s }
s.source_files = 'PKHUD/**/*.{h,swift}'
s.resource_bundle = { 'PKHUDResources' => 'PKHUD/*.xcassets' }
s.swift_version = '5.0'
end