d3-rails 4.10.0 → 7.0.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
- SHA1:
3
- metadata.gz: d1f9acb8b1a2f3d52ce52e05b338878f77dab8d3
4
- data.tar.gz: 2a8aef7962aa0f9bc1db17a084287c09ee24e28b
2
+ SHA256:
3
+ metadata.gz: 872c8c61c83f4a64bac7ee1fa88bdbd866740c24f8f90a5bda16d1e36744fabd
4
+ data.tar.gz: bce7e7c6211e662ff499e5b01d12c3a004bd4dae20cec53df5668d2b6c68848e
5
5
  SHA512:
6
- metadata.gz: 202a7e91968c3c237d738d797030d536375348cd79d1b39a7329c28024b2cfe618415dc83ff36a24783897aec631418a4f1cfed05d202bb4da5fbd9ac0147b27
7
- data.tar.gz: 1a3a8b24e2ac2b47c871754719719d87484deaff3b7e698ebf9464c98a557881e140dcd3e9fd9896c1deecd37e92dfae34f890c5a5b0bd302f2c4b88e87a4af7
6
+ metadata.gz: 2d323d4461910aa437c2c82421ec1d34f6c810ff757cbe55d901bf5eacc6b30033b6ec1c43bf75300bcfbaad1acfb4d784642863cb86cd1d8476373a4b26e697
7
+ data.tar.gz: 8c352574589f6f1bd4fe666b130fc966fbd66b667123ef84184677e95f4db475f5c45f91fc1c33cc6658429f8a312bc7337766d35f3755c4f23b9cd04a18f6e9
data/CHANGELOG.md CHANGED
@@ -1,4 +1,33 @@
1
- ## 4.10.0(19 Jul 2017)
1
+ ## 7.0.0 (18 June 2021)
2
+ * Update updater to update to version 7
3
+ * Upgrade D3 to 7.0.0
4
+
5
+ ## 6.6.2 (3 April 2021)
6
+ * Update updater to update to version 6
7
+ * Upgrade D3 to 6.6.3
8
+
9
+ ## 5.16.0 (31 March 2021)
10
+ * Upgrade D3 to 5.16.0
11
+
12
+ ## 5.9.2 (28 May 2019)
13
+ * Upgrade D3 to 5.9.2
14
+
15
+ ## 5.7.0 (29 Sep 2018)
16
+ * Upgrade D3 to 5.7.0
17
+
18
+ ## 5.5.0 (31 July 2018)
19
+ * Upgrade D3 to 5.5.0
20
+
21
+ ## 5.4.0 (25 May 2018)
22
+ * Upgrade D3 to 5.4.0
23
+
24
+ ## 4.13.0 (05 Mar 2018)
25
+ * Upgrade D3 to 4.13.0
26
+
27
+ ## 4.10.2 (11 Sep 2017)
28
+ * Upgrade D3 to 4.10.2
29
+
30
+ ## 4.10.0 (19 Jul 2017)
2
31
  * Upgrade D3 to 4.10.0
3
32
 
4
33
  ## 4.9.1 (16 May 2017)
data/Gemfile CHANGED
@@ -1,3 +1,3 @@
1
- source :rubygems
1
+ source "https://rubygems.org"
2
2
 
3
3
  gemspec
data/LICENSE CHANGED
@@ -3,7 +3,7 @@ license applies:
3
3
 
4
4
  The MIT License
5
5
 
6
- Copyright (c) 2012-2014 Markus Fenske
6
+ Copyright (c) 2012-2021 Markus Fenske
7
7
 
8
8
  Permission is hereby granted, free of charge, to any person obtaining a copy
9
9
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -8,7 +8,7 @@ d3-rails provides D3 for Rails 3.1 and higher.
8
8
 
9
9
  ## Version
10
10
 
11
- d3-rails comes with version 4.10.0 of D3.js. The d3-rails version will
11
+ d3-rails comes with version 7.0.0 of D3.js. The d3-rails version will
12
12
  always mirror the version of D3. If you need a newer version of
13
13
  d3-rails, see section Development (below).
14
14
 
data/Rakefile CHANGED
@@ -4,11 +4,15 @@ Bundler::GemHelper.install_tasks
4
4
  namespace :d3 do
5
5
  desc 'Update d3 version'
6
6
  task :update_version do
7
- `curl -o app/assets/javascripts/d3.js https://d3js.org/d3.v4.js`
8
- `curl -o app/assets/javascripts/d3.min.js https://d3js.org/d3.v4.min.js`
9
- `cp app/assets/javascripts/d3.js app/assets/javascripts/d3.v4.js`
10
- `cp app/assets/javascripts/d3.min.js app/assets/javascripts/d3.v4.min.js`
11
- version = `grep 'version: ".*"' app/assets/javascripts/d3.js | cut -d '"' -f 2`.strip
7
+ `curl -o app/assets/javascripts/d3.js https://d3js.org/d3.v7.js`
8
+ `curl -o app/assets/javascripts/d3.min.js https://d3js.org/d3.v7.min.js`
9
+ `cp app/assets/javascripts/d3.js app/assets/javascripts/d3.v7.js`
10
+ `cp app/assets/javascripts/d3.min.js app/assets/javascripts/d3.v7.min.js`
11
+ version = File.open("app/assets/javascripts/d3.js") { |f|
12
+ f.each_line.lazy.select { |line|
13
+ line.match(/((\d+\.)(\d+\.)(\*|\d+))/)
14
+ }.first; $1
15
+ }
12
16
  message = <<-MSG
13
17
  Please update the version to #{version} manually in the following files:
14
18
  * CHANGELOG.md