-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathgnuplot.gemspec
More file actions
19 lines (17 loc) · 818 Bytes
/
gnuplot.gemspec
File metadata and controls
19 lines (17 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 = "rogerpack2005@gmail.com"
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