-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathATGValidator.podspec
More file actions
18 lines (16 loc) · 951 Bytes
/
ATGValidator.podspec
File metadata and controls
18 lines (16 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "ATGValidator"
s.version = "1.5.0"
s.summary = "iOS validation framework with form validation support"
s.description = <<-DESC
iOS validation framework with form validation support written in swift. Rule based validation with in built support for UITextField and UITextView, and can be extended for custom UI components. Supports credit card validation and suggestions based on input.
DESC
s.homepage = "https://github.com/altayer-digital/ATGValidator"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "surajthomask" => "suthomas@altayer.com" }
s.platform = :ios, "8.0"
s.swift_version = '5.0'
s.source = { :git => "https://github.com/altayer-digital/ATGValidator.git", :tag => "#{s.version}" }
s.source_files = "ATGValidator", "ATGValidator/**/*.swift"
s.exclude_files = "ATGValidator/Info.plist"
end