Skip to content

Reorganize the code into separate files #24

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 6 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 Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source "http://rubygems.org"

gemspec
16 changes: 16 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PATH
remote: .
specs:
gnuplot (2.6.1)

GEM
remote: http://rubygems.org/
specs:
rake (10.1.0)

PLATFORMS
ruby

DEPENDENCIES
gnuplot!
rake
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
14 changes: 14 additions & 0 deletions gnuplot.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "gnuplot/version"

Gem::Specification.new do |s|
s.name = 'gnuplot'
s.description = s.summary = "Utility library to aid in interacting with gnuplot from ruby"
s.version = Gnuplot::VERSION
s.authors = 'roger pack'
s.email = "[email protected]"
s.homepage = "http://github.com/rdp/ruby_gnuplot/tree/master"

s.add_development_dependency 'rake'
end
Loading