forked from netguru/ngrvalidator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathngrvalidator.podspec
More file actions
31 lines (23 loc) · 1.14 KB
/
Copy pathngrvalidator.podspec
File metadata and controls
31 lines (23 loc) · 1.14 KB
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
#
# 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' => 'patryk.kaczmarek@netguru.pl'}
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/*'
end