forked from redwerk/ValidateKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidateKit.podspec
More file actions
16 lines (16 loc) · 836 Bytes
/
ValidateKit.podspec
File metadata and controls
16 lines (16 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'ValidateKit'
s.version = '1.0.0'
s.summary = 'ValidateKit is a framework for validating data of model.'
s.homepage = 'https://github.com/redwerk/ValidateKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Volodymyr Sakhan' => 'info@redwerk.com' }
s.source = { :git => 'https://github.com/redwerk/ValidateKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Sources/**/*'
s.frameworks = 'Foundation'
s.swift_versions = ['4.2', '5.0', '5.1']
end