gnuplot 2.4.0 → 2.4.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.
Files changed (4) hide show
  1. data/ChangeLog +3 -0
  2. data/Rakefile +1 -1
  3. data/lib/gnuplot.rb +1 -1
  4. metadata +1 -1
data/ChangeLog CHANGED
@@ -1,3 +1,6 @@
1
+ 2.4.1
2
+ * Quote escape more strings. Thanks for the tip!
3
+
1
4
  2.4.0
2
5
  * Allow for 3D plots, fix examples. Thanks everybody!
3
6
 
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'jeweler'
2
2
  Jeweler::Tasks.new do |s|
3
3
  s.name = 'gnuplot'
4
4
  s.description = s.summary = "Utility library to aid in interacting with gnuplot from ruby"
5
- s.version = "2.4.0"
5
+ s.version = "2.4.1"
6
6
  s.authors='roger pack'
7
7
  s.autorequire = 'gnuplot.rb'
8
8
  s.email = "rogerpack2005@gmail.com"
@@ -83,7 +83,7 @@ module Gnuplot
83
83
  class Plot
84
84
  attr_accessor :cmd, :data, :sets
85
85
 
86
- QUOTED = [ "title", "output", "xlabel", "ylabel" ]
86
+ QUOTED = [ "title", "output", "xlabel", "x2label", "ylabel", "y2label", "clabel", "cblabel", "zlabel" ]
87
87
 
88
88
  def initialize (io = nil, cmd = "plot")
89
89
  @cmd = cmd
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: gnuplot
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.4.0
5
+ version: 2.4.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - roger pack