d3-rails 3.5.17 → 4.1.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: a1a9c7591f69df8b4ff8a452a5b9f3b439eee164
4
- data.tar.gz: 564b478b989a65e0782d346e8be01d9497eb1bb0
3
+ metadata.gz: 116018ec5d739f94fb042b3933af724f751df5c7
4
+ data.tar.gz: 8d00e13fdd210e0421ad2d7133b173f65689eafe
5
5
  SHA512:
6
- metadata.gz: 0ab8b12e7cd4ebbaca187fb01d5189c67051a320b5d265ad9b0938126865acee19960a57803259f6e2c484cf4e97e5623a2f5b9240dd1486a4a6c32e33c2a6f2
7
- data.tar.gz: 7eb42f5e8bebea2b9887774277bbf74d8c657128fcaafdc004b3a4cf223bf04f6621aa2d6f9944929a0d2c2ef127172f28aa5ddb0a115d9b923cea3f5d5bfb68
6
+ metadata.gz: e8fa97c9011441a4fe61c7b403aa67b9c4e977694269c1dc4474fe7cdb494c51626a3bd499560e9fb93c07a0d77f54bf80a9d6d9ac395790bcc0eb10d82dea81
7
+ data.tar.gz: 952d225ca7b85da5eb883d0faba00ff36a1298750fbc32d9b81d633c772c3bfba4767619d9c42b9effc9400b21fda379ac87be6dfb817faf9c7ed43dc36a7b02
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 4.1.0 (7 July 2016)
2
+ * Upgrade D3 to 4.1.0
3
+ * Keep D3.v3 at 3.5.17
4
+
1
5
  ## 3.5.17 (3 July 2016)
2
6
  * Upgrade D3 to 3.5.17
3
7
 
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 3.5.17 of D3.js. The d3-rails version will
11
+ d3-rails comes with version 4.1.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,10 +4,10 @@ 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://raw.githubusercontent.com/mbostock/d3/master/d3.js`
8
- `curl -o app/assets/javascripts/d3.min.js https://raw.githubusercontent.com/mbostock/d3/master/d3.min.js`
9
- `cp app/assets/javascripts/d3.js app/assets/javascripts/d3.v3.js`
10
- `cp app/assets/javascripts/d3.min.js app/assets/javascripts/d3.v3.min.js`
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
11
  version = `grep 'version: ".*"' app/assets/javascripts/d3.js | cut -d '"' -f 2`.strip
12
12
  message = <<-MSG
13
13
  Please update the version to #{version} manually in the following files: