client_side_validations 12.0.0 → 12.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/LICENSE.md +1 -1
- data/README.md +3 -1
- data/lib/client_side_validations/version.rb +1 -1
- data/vendor/assets/javascripts/rails.validations.js +2 -2
- metadata +9 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d318eadd163f52eed8bca389cd6c95f9f9d65c478a566777035661bb83be80f7
|
4
|
+
data.tar.gz: 44b0a6d561372a831dcfdc4fa9abec4dbda74223dade1dfb955f5e8899fee0cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be62734fcbac0e98341e8c2c2afd5132b69531097751c9317e4b451235b26ab6e89c2865f12b14807307663c346d231a9e9f8ebf7690cbe62f46d3db6b9ad96a
|
7
|
+
data.tar.gz: 99ad764cbc4bd55e0fecc56a059b8c13c14dc7ef47ddfc78c394189c55f1dc248f9de105e3b769092a591b55b60554ec192ba36d9a17e6650795488f51640331
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 12.1.0 / 2019-01-21
|
4
|
+
|
5
|
+
* [FEATURE] Add Rails 6.0.0.beta1 compatibility
|
6
|
+
* [ENHANCEMENT] Test against Ruby 2.6.0, Ruby edge, and Rails edge
|
7
|
+
* [ENHANCEMENT] Update dependencies
|
8
|
+
|
3
9
|
## 12.0.0 / 2018-12-12
|
4
10
|
|
5
11
|
* [FEATURE] Drop the deprecated tokenizer support in length validator
|
data/LICENSE.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c)
|
3
|
+
Copyright (c) 2019 Geremia Taglialatela, Brian Cardarella
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -169,6 +169,8 @@ You can even turn them off per fieldset:
|
|
169
169
|
...
|
170
170
|
```
|
171
171
|
|
172
|
+
Please note that `pass` callback will also be performed on fields that skip validations.
|
173
|
+
|
172
174
|
## Understanding the client side validations data attribute ##
|
173
175
|
|
174
176
|
A rendered form with validations will always have a `data-client-side-validations` attribute.
|
@@ -451,7 +453,7 @@ on how to properly submit issues and pull requests.
|
|
451
453
|
|
452
454
|
## Legal ##
|
453
455
|
|
454
|
-
[DockYard](https://dockyard.com/), LLC © 2012-
|
456
|
+
[DockYard](https://dockyard.com/), LLC © 2012-2019
|
455
457
|
|
456
458
|
[@dockyard](https://twitter.com/dockyard)
|
457
459
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
2
|
/*!
|
3
|
-
* Client Side Validations - v12.
|
4
|
-
* Copyright (c)
|
3
|
+
* Client Side Validations - v12.1.0 (https://github.com/DavyJonesLocker/client_side_validations)
|
4
|
+
* Copyright (c) 2019 Geremia Taglialatela, Brian Cardarella
|
5
5
|
* Licensed under MIT (http://opensource.org/licenses/mit-license.php)
|
6
6
|
*/
|
7
7
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: client_side_validations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 12.
|
4
|
+
version: 12.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geremia Taglialatela
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2019-01-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
version: 5.0.0.1
|
21
21
|
- - "<="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version:
|
23
|
+
version: 6.0.0.beta1
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
version: 5.0.0.1
|
31
31
|
- - "<="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 6.0.0.beta1
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: jquery-rails
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -135,14 +135,14 @@ dependencies:
|
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: '1.
|
138
|
+
version: '1.8'
|
139
139
|
type: :development
|
140
140
|
prerelease: false
|
141
141
|
version_requirements: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
143
|
- - "~>"
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version: '1.
|
145
|
+
version: '1.8'
|
146
146
|
- !ruby/object:Gem::Dependency
|
147
147
|
name: rake
|
148
148
|
requirement: !ruby/object:Gem::Requirement
|
@@ -163,14 +163,14 @@ dependencies:
|
|
163
163
|
requirements:
|
164
164
|
- - "~>"
|
165
165
|
- !ruby/object:Gem::Version
|
166
|
-
version: 0.
|
166
|
+
version: 0.63.0
|
167
167
|
type: :development
|
168
168
|
prerelease: false
|
169
169
|
version_requirements: !ruby/object:Gem::Requirement
|
170
170
|
requirements:
|
171
171
|
- - "~>"
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version: 0.
|
173
|
+
version: 0.63.0
|
174
174
|
- !ruby/object:Gem::Dependency
|
175
175
|
name: simplecov
|
176
176
|
requirement: !ruby/object:Gem::Requirement
|
@@ -315,8 +315,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
315
315
|
- !ruby/object:Gem::Version
|
316
316
|
version: '0'
|
317
317
|
requirements: []
|
318
|
-
|
319
|
-
rubygems_version: 2.7.7
|
318
|
+
rubygems_version: 3.0.1
|
320
319
|
signing_key:
|
321
320
|
specification_version: 4
|
322
321
|
summary: Client Side Validations
|