-
Notifications
You must be signed in to change notification settings - Fork 5
/
PUWaitHUD.podspec
39 lines (23 loc) · 1.22 KB
/
PUWaitHUD.podspec
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
31
32
33
34
35
36
37
38
39
#
# Be sure to run `pod spec lint PUWaitHUD.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "PUWaitHUD"
spec.version = "1.0.5"
spec.summary = "A Waiting Loader to display until the API response receive."
spec.description = <<-DESC
This CocoaPods library helps you add loading HUD in your mobile application to display attractive loading in your app.
DESC
spec.homepage = "https://github.com/PayalUmraliya/PUWaitHUD"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Payal U." => "[email protected]" }
spec.ios.deployment_target = "12.0"
spec.swift_version = "4.2"
spec.source = { :git => "https://github.com/PayalUmraliya/PUWaitHUD.git", :tag => "#{spec.version}" }
spec.source_files = "WaitLoadingPro/Source/**/*.{h,m,swift}"
spec.screenshot = "https://raw.githubusercontent.com/PayalUmraliya/PUWaitHUD/main/hudoutput.gif"
end