-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPKToolbox.podspec
More file actions
22 lines (22 loc) · 832 Bytes
/
PKToolbox.podspec
File metadata and controls
22 lines (22 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# Be sure to run `pod spec lint PKToolbox.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about the attributes see http://docs.cocoapods.org/specification.html
#
Pod::Spec.new do |s|
s.name = "PKToolbox"
s.version = "2.0.0"
s.summary = "Pavel's utilities for iOS."
s.description = <<-DESC
DESC
s.license = 'MIT'
s.homepage = "http://pavelkunc.cz/PKToolbox"
s.author = { "Pavel Kunc" => "pavel.kunc@gmail.com" }
s.source = { :git => "https://github.com/pk/pktoolbox.git", :tag => "v#{s.version}" }
s.platform = :ios, '6.0'
s.source_files = 'Source', 'Source/**/*.{h,m}'
s.exclude_files = 'Source/Exclude'
s.frameworks = 'Foundation', 'UIKit'
s.requires_arc = true
end