-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathSwiftKVC.podspec
More file actions
17 lines (17 loc) · 811 Bytes
/
SwiftKVC.podspec
File metadata and controls
17 lines (17 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "SwiftKVC"
s.version = "4.0.1"
s.summary = "Key-Value Coding (KVC) for native Swift classes and structs"
s.description = <<-DESC
SwiftKVC enables Key-Value Coding (KVC) for native Swift classes and structs.
DESC
s.homepage = "https://github.com/bradhilton/SwiftKVC"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Brad Hilton" => "brad@skyvive.com" }
s.source = { :git => "https://github.com/bradhilton/SwiftKVC.git", :tag => "4.0.1" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.source_files = "SwiftKVC", "SwiftKVC/**/*.{swift,h,m}"
s.requires_arc = true
s.dependency 'Reflection', '~> 0.16.0'
end