Skip to content

adding SPlot using for HeatMap (pm3d) plots #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.6.2
* adding to_gsplot for SPlot images, now you can draw HeatMap using [x, y, d ] arrays

2.6.1
* TheKnight Fix bug in SPlot.to_gplot implementation.

Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source "http://rubygems.org"

gemspec
13 changes: 3 additions & 10 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
require 'jeweler2'
Jeweler::Tasks.new do |s|
s.name = 'gnuplot'
s.description = s.summary = "Utility library to aid in interacting with gnuplot from ruby"
s.version = "2.6.1"
s.authors='roger pack'
s.email = "[email protected]"
s.homepage = "http://github.com/rdp/ruby_gnuplot/tree/master"
end
require 'bundler'
Bundler::GemHelper.install_tasks

desc 'run unit tests'
task :test do
Expand All @@ -16,4 +9,4 @@ task :test do
end
end

Jeweler::RubygemsDotOrgTasks.new
task :default => :test
Binary file added gnuplot-2.6.2.gem
Binary file not shown.
19 changes: 19 additions & 0 deletions gnuplot.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "gnuplot/version"

lib_rb_files = Dir.glob( File.join( "lib", "**", "*.rb") )
test_rb_files = Dir.glob( File.join( "test", "**", "*.rb") )
examples_rb_files = Dir.glob( File.join( "examples", "**", "*.rb") )

Gem::Specification.new do |s|
s.name = 'gnuplot'
s.description = "Utility library to aid in interacting with gnuplot from ruby"
s.summary = "Utility that could be used to create different types of plot (see gnuplot)."
s.version = Gnuplot::VERSION
s.authors = 'roger pack'
s.email = "[email protected]"
s.homepage = "http://github.com/rdp/ruby_gnuplot/tree/master"
s.files = lib_rb_files + test_rb_files + examples_rb_files + [ "Rakefile" ]
s.add_development_dependency 'rake'
end
Loading