data-confirm-modal 1.3.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 01626f3b1958f535db12bc855bac6c8bfb17c8ed
4
- data.tar.gz: 67185163ac5ce03831ff7d143a53ebd54dce0139
3
+ metadata.gz: bcee26dade1f50460ee7cdea54b83e871376545a
4
+ data.tar.gz: 7c70fb199272aeff299f378dc263b98d54cc41ad
5
5
  SHA512:
6
- metadata.gz: 68bfc13ceaacf7f9ec69edaef593570ab2b09ab8316d65ea3361956f02833b1558b86d3610b65f1f0eb4aae7ea06b418768df215deca7a7603004840fd352bc9
7
- data.tar.gz: d32978a5a9a3e9f5d2cf4b79a83998de38ee3d5a7a9a12ce1fdd6395b117f2af84d08f08e3f78047fcf9ee7df3b1f8bac7ad1e484b47e77f9ee36854a0fae984
6
+ metadata.gz: 462ab1c5ac5b2ce9ea45748f3a294f40969d2dc6d219a5ef2948044749016958d15392e30faf6d42e66dfcb1afeb6a2bcc4859ea520977a4f172b9211f5e917f
7
+ data.tar.gz: 7e9bc95a316561b931068201773e04472d9bcb632286a2f46644b13ac95d9404c28fc1985f119d0d7046430bf776c84fa69450e488d388ee68e8b81260d5979a
data/bower.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "data-confirm-modal",
3
+ "authors": [
4
+ "Marcello Barnaba <vjt@openssl.it>"
5
+ ],
6
+ "homepage": "http://github.com/ifad/data-confirm-modal",
7
+ "description": "Use bootstrap modals with Rails' UJS data-confirm",
8
+ "main": "vendor/assets/javascripts/data-confirm-modal.js",
9
+ "license": "MIT",
10
+ "dependencies": {
11
+ "bootstrap": ">=3.0.0",
12
+ "jquery-ujs": ">=1.0.0"
13
+ },
14
+ "ignore": [
15
+ "*",
16
+ "!vendor/assets/javascripts"
17
+ ]
18
+ }
@@ -1,3 +1,3 @@
1
1
  module DataConfirmModal
2
- VERSION = '1.3.0'
2
+ VERSION = '1.4.0'
3
3
  end
data/package.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "data-confirm-modal",
3
+ "version": "1.4.0",
4
+ "description": "Makes Rails' link_to confirm: 'foo' build a Bootstrap Modal instead of calling the browser's confirm() API.",
5
+ "main": "vendor/assets/javascripts/data-confirm-modal.js",
6
+ "repository": "https://github.com/ifad/data-confirm-modal.git",
7
+ "author": "Marcello Barnaba",
8
+ "license": "MIT"
9
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: data-confirm-modal
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcello Barnaba
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-06 00:00:00.000000000 Z
11
+ date: 2017-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -37,10 +37,12 @@ files:
37
37
  - LICENSE
38
38
  - README.md
39
39
  - Rakefile
40
+ - bower.json
40
41
  - data-confirm-modal.gemspec
41
42
  - lib/data-confirm-modal.rb
42
43
  - lib/data-confirm-modal/engine.rb
43
44
  - lib/data-confirm-modal/version.rb
45
+ - package.json
44
46
  - vendor/assets/javascripts/data-confirm-modal.js
45
47
  homepage: http://github.com/ifad/data-confirm-modal
46
48
  licenses: []