File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ source 'https://github.com/CocoaPods/Specs.git'
1919platform :ios , " 8.1"
2020
2121use_frameworks!
22- pod ' SwiftValidator' , ' 2.0.6 '
22+ pod ' SwiftValidator' , ' 2.0.7 '
2323```
2424
2525Initialize the `` Validator `` by setting a delegate to a View Controller or other object.
@@ -56,7 +56,7 @@ Validate Fields on button tap or however you would like to trigger it.
5656
5757``` swift
5858@IBAction func signupTapped (sender : AnyObject ) {
59- validator.validateAll (delegate :self )
59+ validator.validate (delegate :self )
6060}
6161```
6262
@@ -121,7 +121,7 @@ Swift Validator is written and maintained by Jeff Potter [@jpotts18](http://twit
121121
122122## Contributing
123123
124- 1 . [ Fork it] ( https://github.com/jpotts18/swift-validator /fork )
124+ 1 . [ Fork it] ( https://github.com/jpotts18/SwiftValidator /fork )
1251252 . Create your feature branch ` git checkout -b my-new-feature `
1261263 . Commit your changes ` git commit -am 'Add some feature' `
1271274 . Push to the branch ` git push origin my-new-feature `
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "SwiftValidator"
3- s . version = "2.0.6 "
3+ s . version = "2.0.7 "
44 s . summary = "A UITextField Validation library for Swift"
55 s . homepage = "https://github.com/jpotts18/SwiftValidator"
66 s . screenshots = "https://raw.githubusercontent.com/jpotts18/SwiftValidator/master/swift-validator-v2.gif"
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99 s . social_media_url = "http://twitter.com/jpotts18"
1010 s . platform = :ios
1111 s . ios . deployment_target = '8.0'
12- s . source = { :git => "https://github.com/jpotts18/SwiftValidator.git" , :tag => "2.0.6 " }
12+ s . source = { :git => "https://github.com/jpotts18/SwiftValidator.git" , :tag => "2.0.7 " }
1313 s . source_files = "Validator/*.swift"
1414 s . frameworks = [ 'Foundation' , 'UIKit' ]
1515 s . requires_arc = true
You can’t perform that action at this time.
0 commit comments