forked from netguru/ngrvalidator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathngrvalidator.podspec
32 lines (24 loc) · 1.17 KB
/
ngrvalidator.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
28
29
30
31
32
#
# NGRValidator
#
# Created by Patryk Kaczmarek on 29.12.2014.
# Copyright (c) 2014 Netguru Sp. z o.o. All rights reserved.
#
Pod::Spec.new do |s|
s.name = "ngrvalidator"
s.version = "2.0"
s.summary = "Centralized and comprehensive validator for iOS"
s.description = "NGRValidator is an Objective-C 3rd party library for iOS and OSX. It allows you to validate the data in the way that you want. It's an easy to read, centralized, and comprehensive solution to validating any Objective-C model in just a few lines of code."
s.homepage = "https://github.com/netguru/ngrvalidator"
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.authors = {'Patryk Kaczmarek' => '[email protected]'}
s.source = { :git => 'https://github.com/netguru/ngrvalidator.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11.4'
s.requires_arc = true
s.source_files = 'NGRValidator/NGRValidator/**/*.{h,m,swift}'
s.header_dir = 'NGRValidator'
s.private_header_files = 'NGRValidator/NGRValidator/Headers/Private/*'
s.preserve_paths = 'Scripts/*'
s.swift_version = '4.2'
end