client_side_validations 16.0.0 → 16.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43b783baa4ef85e0722508e882ae809de87bc469f480a740f81eff2d7e103e55
4
- data.tar.gz: 22d4a7022f6403cfeca96a1eca204cd94454135fbf11b196193c196ba0d19344
3
+ metadata.gz: dab4f0aff6e54241abb7e39756a3941d6def2802a3275ebd8a8ac023f35a5642
4
+ data.tar.gz: c005612f39ac518411f999396ab4084bbbcab5c5c37519be76351488fc4ce31d
5
5
  SHA512:
6
- metadata.gz: 3a4fb820cf1b79a10295f504e0a3bf229578d4611d2e2a4aa82e2050735a436da730fb815bcd3db98aaca914c532a5d98b1d7743e671642337eab73d22cf0b3b
7
- data.tar.gz: 3d2eebecc60968800d8fb9b4b013055658ea0ae100e73012ee50988bd41271a6d23999587bd0e8524c74fb8c17db733197e0b60bcf2c59301cb45acf5ede696e
6
+ metadata.gz: 397c6916296676f34f66e0a0966c517c0b01100c80def06b6aede2444ef82fe12ffd1d8dd4f195ff0a9458f04beb5009742b8c5c735e008ac0ab74f4adec65e6
7
+ data.tar.gz: 5bba610a6bc1e4636a8420522fec21160d89dd50895867bfb0f8ceccca870ac35018f24f3d1718add45b60320f44791dff116c968854aaf3545495ce0f6d7208
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 16.0.1 / 2019-08-24
4
+
5
+ * [BUGFIX] Fix default export (JS)
6
+
3
7
  ## 16.0.0 / 2019-08-23
4
8
 
5
9
  * [FEATURE] Move to ES6
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ClientSideValidations
4
- VERSION = '16.0.0'
4
+ VERSION = '16.0.1'
5
5
  end
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Client Side Validations JS - v0.0.3 (https://github.com/DavyJonesLocker/client_side_validations)
2
+ * Client Side Validations JS - v0.0.4 (https://github.com/DavyJonesLocker/client_side_validations)
3
3
  * Copyright (c) 2019 Geremia Taglialatela, Brian Cardarella
4
4
  * Licensed under MIT (https://opensource.org/licenses/mit-license.php)
5
5
  */
@@ -7,7 +7,7 @@
7
7
  (function (global, factory) {
8
8
  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('jquery')) :
9
9
  typeof define === 'function' && define.amd ? define(['jquery'], factory) :
10
- (global = global || self, global.clientSideValidations = factory(global.$));
10
+ (global = global || self, global.ClientSideValidations = factory(global.$));
11
11
  }(this, function ($) { 'use strict';
12
12
 
13
13
  $ = $ && $.hasOwnProperty('default') ? $['default'] : $;
@@ -759,10 +759,6 @@
759
759
  return (typeof exports === "undefined" ? "undefined" : _typeof(exports)) === 'object' && typeof module !== 'undefined'; // eslint-disable-line no-undef
760
760
  }
761
761
 
762
- var main = {
763
- ClientSideValidations: ClientSideValidations
764
- };
765
-
766
- return main;
762
+ return ClientSideValidations;
767
763
 
768
764
  }));
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: 16.0.0
4
+ version: 16.0.1
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: 2019-08-23 00:00:00.000000000 Z
12
+ date: 2019-08-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails