forked from chrismiles/EZForm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEZForm.podspec
More file actions
16 lines (16 loc) · 916 Bytes
/
EZForm.podspec
File metadata and controls
16 lines (16 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "EZForm"
s.version = "1.1.4"
s.summary = "iOS form handling and validation library."
s.description = <<-DESC
EZForm is a form handling and validation library for iOS. It is designed to be decoupled from your user interface layout, leaving you free to present your form UI any way you like. That doesn't mean EZForm won't integrate with your UI. You tell EZForm which of your controls and views you want to handle each form field, and EZForm will take care of input validation, input filtering and updating views when field values change.
DESC
s.homepage = "https://github.com/chrismiles/EZForm"
s.license = 'MIT'
s.author = { "Chris Miles" => "miles.chris@gmail.com" }
s.source = { :git => "https://github.com/chrismiles/EZForm.git", :tag => "1.1.4" }
s.platform = :ios, '5.0'
s.source_files = 'EZForm/EZForm/src'
s.framework = 'UIKit'
s.requires_arc = true
end