-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKeyPathMapper.podspec
More file actions
19 lines (19 loc) · 915 Bytes
/
KeyPathMapper.podspec
File metadata and controls
19 lines (19 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "KeyPathMapper"
s.version = "1.1.0"
s.summary = "KeyPathMapper facilitates mapping between models"
s.description = <<-DESC
KeyPathMapper is a thin library based on swift #KeyPath feature which facilitates mapping between two different models.
DESC
s.homepage = "https://github.com/marshallxxx/KeyPathMapper"
s.license = 'MIT'
s.author = { 'Evghenii Nicolaev' => 'nicolaevevghenii@gmail.com' }
s.social_media_url = 'https://twitter.com/ENicolaev'
s.source = { :git => "https://github.com/marshallxxx/KeyPathMapper.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'Sources/**/*.swift'
end