Skip to content

Commit 0c50381

Browse files
committed
adding updates to readme and podspec
1 parent 1d93171 commit 0c50381

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ source 'https://github.com/CocoaPods/Specs.git'
1919
platform :ios, "8.1"
2020

2121
use_frameworks!
22-
pod 'SwiftValidator', '2.0.6'
22+
pod 'SwiftValidator', '2.0.7'
2323
```
2424

2525
Initialize 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)
125125
2. Create your feature branch `git checkout -b my-new-feature`
126126
3. Commit your changes `git commit -am 'Add some feature'`
127127
4. Push to the branch `git push origin my-new-feature`

SwiftValidator.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::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

0 commit comments

Comments
 (0)