gnuplot 2.6.0 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/ChangeLog +3 -0
  2. data/Rakefile +2 -1
  3. data/lib/gnuplot.rb +3 -2
  4. metadata +2 -2
data/ChangeLog CHANGED
@@ -1,3 +1,6 @@
1
+ 2.6.1
2
+ * TheKnight Fix bug in SPlot.to_gplot implementation.
3
+
1
4
  2.6.0
2
5
  * better readme, allow for unsetting variables, thanks @kot-behemoth and @evnu
3
6
 
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'jeweler2'
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.6.0"
5
+ s.version = "2.6.1"
6
6
  s.authors='roger pack'
7
7
  s.email = "rogerpack2005@gmail.com"
8
8
  s.homepage = "http://github.com/rdp/ruby_gnuplot/tree/master"
@@ -15,4 +15,5 @@ task :test do
15
15
  system("ruby #{file}")
16
16
  end
17
17
  end
18
+
18
19
  Jeweler::RubygemsDotOrgTasks.new
@@ -182,8 +182,9 @@ module Gnuplot
182
182
  end
183
183
 
184
184
  def to_gplot (io = "")
185
- @sets.each { |var, val| io << "set #{var} #{val}\n" }
186
-
185
+ @settings.each do |setting|
186
+ io << setting.map(&:to_s).join(" ") << "\n"
187
+ end
187
188
  io
188
189
  end
189
190
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gnuplot
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.6.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-15 00:00:00.000000000 Z
12
+ date: 2012-12-28 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Utility library to aid in interacting with gnuplot from ruby
15
15
  email: rogerpack2005@gmail.com