graphkit 0.3.0 → 0.3.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: 30e1a05bbf7cc899ca1c2e8682de4b93dd6f3870
4
- data.tar.gz: 9a8d784fc19bac844f949b7ff49ef1bef9994669
3
+ metadata.gz: 58848dc762071052dd209c56f4b1d46c8fc78f58
4
+ data.tar.gz: 70cc13fbb6ed372ceb80f7bb53defe4d0f750ebc
5
5
  SHA512:
6
- metadata.gz: 872a13313d9af37ccec3636ab625295a03c0523acc5964eacd93cd12779499b01991f5ab4c3be0ba95051d7ee493883dc2ef979b702afa454bc2fdd91e511850
7
- data.tar.gz: a3c15244935e8dc67af1b53bd937f7ad7016e591415810a13e5f58fdc715b449ac761f5bdb9d6d8044e055b65c639c2c15cf302fd500e566ab36b690b33546c8
6
+ metadata.gz: 00fab96a387adb0e65584cda2dfb8c9fc0f529ad50d7ac901f856f82ce6e1a58cff17eec9c3d7056d77210b9a785d251e5af318ec11967bd8b8bbc699e1a0df6
7
+ data.tar.gz: bc99fb428607acdd122a2caa7c9e507df924999a72efd0a48997643d3d8d10f506aee5ab469c338063d77d571507d194c7397479b7160e426db1d45b58594a1d
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
data/graphkit.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: graphkit 0.3.0 ruby lib
5
+ # stub: graphkit 0.3.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "graphkit"
9
- s.version = "0.3.0"
9
+ s.version = "0.3.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
@@ -563,7 +563,7 @@ EOF
563
563
  options = {}
564
564
  end
565
565
  raise "Nothing to plot: size = 0" if size==0
566
- self[0].gp.multiplot = "layout #{size},1"
566
+ self[0].gp.multiplot = options[:multiplot] || "layout #{size},1"
567
567
  for i in 1...self.size
568
568
  self[i].gp.multiplot_following = true
569
569
  end
@@ -76,7 +76,7 @@ class TestGraphkit < Test::Unit::TestCase
76
76
  pp multiplot
77
77
 
78
78
  #multiplot.gnuplot
79
- multiplot.gnuplot_write('multiplot.ps')
79
+ multiplot.gnuplot_write('multiplot.ps', multiplot: 'layout 2,2')
80
80
  end
81
81
 
82
82
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edmund Highcock