-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHUDKit.podspec
More file actions
30 lines (20 loc) · 879 Bytes
/
HUDKit.podspec
File metadata and controls
30 lines (20 loc) · 879 Bytes
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
Pod::Spec.new do |s|
s.name = "HUDKit"
s.version = "1.0.0"
s.summary = "HUDKit provides HUD interface as UIPresentationController."
s.description = <<-DESC
HUDKit provides the HUD interface as an implementation of
UIPresentationController. You can show your any view controllers in the HUD
panel.
HUDKit provides HUDProgressViewController also. This can be used as progress
HUD easily.
DESC
s.homepage = "https://github.com/cockscomb/HUDKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Hiroki Kato" => "mail@cockscomb.info" }
s.social_media_url = "https://twitter.com/cockscomb"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/cockscomb/HUDKit.git", :tag => "#{s.version}" }
s.source_files = "HUDKit/Classes/**/*.{swift}"
s.resource = "HUDKit/Classes/**/*.{xib}"
end