forked from JonasGessner/JGProgressHUD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJGProgressHUD.podspec
26 lines (24 loc) · 993 Bytes
/
JGProgressHUD.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
Pod::Spec.new do |s|
s.name = "JGProgressHUD"
s.version = "1.0.2"
s.summary = "Simple but powerful and modern progress HUD for iOS."
s.description = <<-DESC
<b>JGProgressHUD:</b>
• Super simple to implement
• Feature rich
• Easy extensibility and customization (custom animations and progress indicators)
• Up to date, ex. using a blurred view on iOS 8
• Backwards compatibility to iOS 5
• Well documented
• And most importantly, it looks good!
DESC
s.homepage = "https://github.com/JonasGessner/JGProgressHUD"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = "Jonas Gessner"
s.social_media_url = "http://twitter.com/JonasGessner"
s.platform = :ios, "5.0"
s.source = { :git => "https://github.com/JonasGessner/JGProgressHUD.git", :tag => "v1.0.2" }
s.source_files = "JGProgressHUD/JGProgressHUD/*.{h,m}"
s.frameworks = "Foundation", "UIKit", "QuartzCore"
s.requires_arc = true
end