forked from AssistoLab/KVNProgress
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathKVNProgress.podspec
More file actions
22 lines (18 loc) · 800 Bytes
/
KVNProgress.podspec
File metadata and controls
22 lines (18 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "KVNProgress"
s.version = "2.1.7"
s.summary = "A full screen progress view for iOS 7"
s.homepage = "https://github.com/kevin-hirsch/KVNProgress"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kevin Hirsch" => "kevinh6113@hotmail.com" }
s.social_media_url = "http://twitter.com/kevinh6113"
s.platform = :ios, '7.0'
s.source = {
:git => "https://github.com/kevin-hirsch/KVNProgress.git",
:tag => s.version.to_s
}
s.source_files = "KVNProgress/Classes", "KVNProgress/Classes/**/*.{h,m}", "KVNProgress/Categories", "KVNProgress/Categories/**/*.{h,m}"
s.resources = "KVNProgress/Resources/*.{png,xib}"
s.frameworks = "QuartzCore", "GLKit"
s.requires_arc = true
end