es6-promise-rails 1.0.0 → 2.0.1

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: f552362c7d9fbd5e259b6d65c1689c21e643303e
4
- data.tar.gz: 0b78ca9f58532e81217c83b9ffadb2cc6ee1749b
3
+ metadata.gz: 05a43d71953c63d6de4075ebab25e1fe53596edf
4
+ data.tar.gz: 140310eea718cee2ad2296e113e05aebe88d0a68
5
5
  SHA512:
6
- metadata.gz: 639b5f4b325c20a35eb8991c334b444295288ff3194dac2c0565843d0260aba54cae29280677c000a5df5f78ec3bf92089c3065a4da6d809327f3f95aad276fb
7
- data.tar.gz: 883ccd18fd918721eb1356b2e616c2c701a4b7cd8296eea01e0f3fbcdaa529006a3fe509ba64e447d1507841d778ffbc02e0cf8371eac2319da3b64297f95666
6
+ metadata.gz: 5f0c2384b3669d682886fbf49d19ad9dbe5e062f214e556e55aa805e29a9909bf07f0b6f9c60b6abed6633895bcf5b52104b974036599df5a9fc046b209ba51b
7
+ data.tar.gz: 5172ceb5ab0b5c314613aad2ea7c580b2e5ec2e86d8cb7b2fe72b1cf1c8e9b0fcc258e1f873e60767b096b5ba767bdc32e1c01182ad2520e5fec4ba40b100417
data/Gemfile.lock CHANGED
@@ -1,22 +1,22 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- es6-promise-rails (1.0.0)
4
+ es6-promise-rails (2.0.1)
5
5
  railties (>= 3.1.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actionpack (4.1.1)
11
- actionview (= 4.1.1)
12
- activesupport (= 4.1.1)
10
+ actionpack (4.1.6)
11
+ actionview (= 4.1.6)
12
+ activesupport (= 4.1.6)
13
13
  rack (~> 1.5.2)
14
14
  rack-test (~> 0.6.2)
15
- actionview (4.1.1)
16
- activesupport (= 4.1.1)
15
+ actionview (4.1.6)
16
+ activesupport (= 4.1.6)
17
17
  builder (~> 3.1)
18
18
  erubis (~> 2.7.0)
19
- activesupport (4.1.1)
19
+ activesupport (4.1.6)
20
20
  i18n (~> 0.6, >= 0.6.9)
21
21
  json (~> 1.7, >= 1.7.7)
22
22
  minitest (~> 5.1)
@@ -24,21 +24,21 @@ GEM
24
24
  tzinfo (~> 1.1)
25
25
  builder (3.2.2)
26
26
  erubis (2.7.0)
27
- i18n (0.6.9)
27
+ i18n (0.6.11)
28
28
  json (1.8.1)
29
- minitest (5.3.3)
29
+ minitest (5.4.2)
30
30
  rack (1.5.2)
31
31
  rack-test (0.6.2)
32
32
  rack (>= 1.0)
33
- railties (4.1.1)
34
- actionpack (= 4.1.1)
35
- activesupport (= 4.1.1)
33
+ railties (4.1.6)
34
+ actionpack (= 4.1.6)
35
+ activesupport (= 4.1.6)
36
36
  rake (>= 0.8.7)
37
37
  thor (>= 0.18.1, < 2.0)
38
- rake (10.3.1)
38
+ rake (10.3.2)
39
39
  thor (0.19.1)
40
- thread_safe (0.3.3)
41
- tzinfo (1.1.0)
40
+ thread_safe (0.3.4)
41
+ tzinfo (1.2.2)
42
42
  thread_safe (~> 0.1)
43
43
 
44
44
  PLATFORMS
data/README.md CHANGED
@@ -12,7 +12,7 @@ gem 'es6-promise-rails'
12
12
  Add it to your JavaScript manifest file:
13
13
 
14
14
  ``` js
15
- //= require promise
15
+ //= require es6-promise
16
16
  ```
17
17
 
18
18
  ## License
@@ -1,7 +1,7 @@
1
1
  module E6
2
2
  module Promise
3
3
  module Rails
4
- VERSION = '1.0.0'.freeze
4
+ VERSION = '2.0.1'.freeze
5
5
  end
6
6
  end
7
7
  end