chartjs-ror 3.6.4 → 3.7.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +2 -10
- data/chartjs-ror.gemspec +1 -0
- data/lib/chartjs/version.rb +1 -1
- data/vendor/assets/javascripts/Chart.min.js +11 -8
- metadata +8 -8
- data/vendor/assets/javascripts/Chart.bundle.min.js +0 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 700db71e8b8ad9159314dce41e15bca80e0b0ac841eef90cfc68f00c546b117c
|
|
4
|
+
data.tar.gz: 88703af95b762dbc22364c17c302a032b7c3af8be761c2f5bd0f24108ad068e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1534723e0409ffce450d9e21ff17cc00dd07bc74d7f2ff8a2521b7fdbecd30b4d54cea381f6d051a3cb9dfe5726827e6f7636aade16f6ead4bab0d7fd6182ff
|
|
7
|
+
data.tar.gz: 8bc30bf56d6c1bd201f9e5fa2135f674f3bd0355fe59f04b413ec31323383a0378fbaa058f9f37a4bde18456c8cc9f18f6de68e5ba8260256203433eaa3adcce
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Simplifies using [Chart.js][] in Rails views.
|
|
|
5
5
|
|
|
6
6
|
## Current Chart.js version
|
|
7
7
|
|
|
8
|
-
This gem includes [Chart.js
|
|
8
|
+
This gem includes [Chart.js v3.7.1](https://github.com/chartjs/Chart.js/tree/v3.7.1).
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
@@ -18,20 +18,12 @@ And then execute:
|
|
|
18
18
|
|
|
19
19
|
$ bundle
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
After that require Chart:
|
|
22
22
|
|
|
23
|
-
Choose the appropriate one in your javascript manifest:
|
|
24
|
-
|
|
25
|
-
- Without Moment.js:
|
|
26
23
|
```javascript
|
|
27
24
|
//= require Chart.min
|
|
28
25
|
```
|
|
29
26
|
|
|
30
|
-
- With Moment.js:
|
|
31
|
-
```javascript
|
|
32
|
-
//= require Chart.bundle.min
|
|
33
|
-
```
|
|
34
|
-
|
|
35
27
|
Please note Chart.js [no longer supports IE8 and below](https://github.com/chartjs/Chart.js/issues/2396#issuecomment-215233106).
|
|
36
28
|
|
|
37
29
|
|
data/chartjs-ror.gemspec
CHANGED
|
@@ -11,6 +11,7 @@ Gem::Specification.new do |gem|
|
|
|
11
11
|
gem.description = 'Simplifies using Chart.js in Rails'
|
|
12
12
|
gem.summary = 'Simplifies using Chart.js in Rails'
|
|
13
13
|
gem.homepage = 'https://github.com/airblade/chartjs-ror'
|
|
14
|
+
gem.license = 'MIT'
|
|
14
15
|
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/chartjs/version.rb
CHANGED