-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnyMapper.podspec
27 lines (23 loc) · 1.04 KB
/
AnyMapper.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
27
#
# Be sure to run `pod lib lint FieldCreator.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'AnyMapper'
s.version = `git describe --abbrev=0 --tags`
s.summary = 'Library for mappind Dictionary to struct'
s.description = 'Library for mappind Dictionary<String: Any> and NSDictionary to struct or class'
s.homepage = 'https://github.com/Lumyk/AnyMapper'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Evgeny Kalashnikov' => '[email protected]' }
s.source = { :git => 'https://github.com/Lumyk/AnyMapper.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0'
s.swift_versions = '5.3'
s.source_files = 'Sources/AnyMapper/**/*.swift'
end