Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Barreto committed Oct 16, 2014
1 parent be9cbf8 commit 307d3fb
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 41 deletions.
1 change: 0 additions & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ platform :ios, '7.0'

pod 'AFNetworking', '~> 2.0', :inhibit_warnings => true
pod 'XLDataLoader', '~> 1.1', :inhibit_warnings => true
pod 'MRProgress', '~> 0.2', :inhibit_warnings => true
30 changes: 0 additions & 30 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,45 +20,15 @@ PODS:
- AFNetworking/UIKit (2.4.1):
- AFNetworking/NSURLConnection
- AFNetworking/NSURLSession
- MRProgress (0.7.0):
- MRProgress/ActivityIndicator
- MRProgress/Blur
- MRProgress/Circular
- MRProgress/Icons
- MRProgress/NavigationBarProgress
- MRProgress/Overlay
- MRProgress/ActivityIndicator (0.7.0):
- MRProgress/Stopable
- MRProgress/Blur (0.7.0):
- MRProgress/Helper
- MRProgress/Circular (0.7.0):
- MRProgress/Helper
- MRProgress/ProgressBaseClass
- MRProgress/Stopable
- MRProgress/Helper (0.7.0)
- MRProgress/Icons (0.7.0)
- MRProgress/NavigationBarProgress (0.7.0):
- MRProgress/ProgressBaseClass
- MRProgress/Overlay (0.7.0):
- MRProgress/ActivityIndicator
- MRProgress/Blur
- MRProgress/Circular
- MRProgress/Helper
- MRProgress/Icons
- MRProgress/ProgressBaseClass (0.7.0)
- MRProgress/Stopable (0.7.0):
- MRProgress/Helper
- XLDataLoader (1.1.0):
- AFNetworking (~> 2.0)

DEPENDENCIES:
- AFNetworking (~> 2.0)
- MRProgress (~> 0.2)
- XLDataLoader (~> 1.1)

SPEC CHECKSUMS:
AFNetworking: 0aabc6fae66d6e5d039eeb21c315843c7aae51ab
MRProgress: 5abb19ba97ad22c321c37f3d299e32391109b1d6
XLDataLoader: bd783ebe782932a6390ffc7619fcd884c8600944

COCOAPODS: 0.34.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ Installation
The easiest way to use XLForm in your app is via [CocoaPods](http://cocoapods.org/ "CocoaPods").

1. Add the following line in the project's Podfile file:
`pod 'XLForm', '~> 2.0'`.
`pod 'XLForm', '~> 2.1.0'`.
2. Run the command `pod install` from the Podfile folder directory.

XLForm **has no** dependencies over other pods.
Expand Down
4 changes: 2 additions & 2 deletions XLForm.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = 'XLForm'
s.version = '2.0.1'
s.version = '2.1.0'
s.license = { :type => 'MIT' }
s.summary = 'XLForm is the most flexible and powerful iOS library to create dynamic table-view forms.'
s.description = <<-DESC
The goal of the library is to get the same power of hand-made forms but spending 1/10 of the time. XLForm provides a very powerful DSL used to create a form, validate & serialize the form data. It keeps track of this specification on runtime, updating the UI on the fly.
DESC
s.homepage = 'https://github.com/xmartlabs/XLForm'
s.authors = { 'Martin Barreto' => '[email protected]' }
s.source = { :git => 'https://github.com/xmartlabs/XLForm.git', :tag => 'v2.0.1' }
s.source = { :git => 'https://github.com/xmartlabs/XLForm.git', :tag => 'v2.1.0' }
s.source_files = 'XLForm/XL/**/*.{h,m}'
s.requires_arc = true
s.ios.deployment_target = '7.0'
Expand Down
24 changes: 21 additions & 3 deletions XLForm/XL/Validation/XLFormValidator.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
//
// XLFormValidator.h
// XLForm
// XLForm ( https://github.com/xmartlabs/XLForm )
//
// Created by Martin Barreto on 8/10/14.
// Copyright (c) 2014 Xmartlabs. All rights reserved.
// Copyright (c) 2014 Xmartlabs ( http://xmartlabs.com )
//
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.


#import "XLFormValidatorProtocol.h"

Expand Down
25 changes: 21 additions & 4 deletions XLForm/XL/Validation/XLFormValidator.m
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
//
// XLFormValidator.m
// XLForm
// XLFormValidator.h
// XLForm ( https://github.com/xmartlabs/XLForm )
//
// Created by Martin Barreto on 8/10/14.
// Copyright (c) 2014 Xmartlabs. All rights reserved.
// Copyright (c) 2014 Xmartlabs ( http://xmartlabs.com )
//
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

#import "XLFormValidationStatus.h"
#import "XLFormRegexValidator.h"
Expand Down

0 comments on commit 307d3fb

Please sign in to comment.