- Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathruby_gnuplot.gemspec
More file actions
Latest commit
25 lines (22 loc) · 951 Bytes
/
Copy pathruby_gnuplot.gemspec
File metadata and controls
25 lines (22 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# coding: utf-8
lib=File.expand_path('../lib',__FILE__)
$LOAD_PATH.unshift(lib)unless $LOAD_PATH.include?(lib)
require'ruby_gnuplot/version'
Gem::Specification.newdo |s|
s.name='gnuplot'
s.description=s.summary="Utility library to aid in interacting with gnuplot from ruby"
s.version=RubyGnuplot::VERSION
s.authors='roger pack'
s.email="rogerpack2005@gmail.com"
s.homepage="http://github.com/rdp/ruby_gnuplot/tree/master"
s.license="BSD"
s.files=`git ls-files`.split($/)
s.executables=s.files.grep(%r{^bin/}){ |f| File.basename(f)}
s.test_files=s.files.grep(%r{^(test|spec|features)/})
s.require_paths=["lib"]
s.add_development_dependency'minitest'
s.add_development_dependency'rspec','3.9.0'
s.add_development_dependency'rubocop','0.73.0'
s.add_development_dependency'rubocop-rspec','1.33.0'
s.add_development_dependency'simplecov','0.17.0'
end