Sha256: b12d92998021983fc9496bde2966aa77a72c21f7fca36eda2afd954b709bf37c
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'gnuplot/multiplot/version' Gem::Specification.new do |spec| spec.name = "gnuplot-multiplot" spec.version = Gnuplot::Multiplot::VERSION spec.authors = ["John T. Prince"] spec.email = ["jtprince@gmail.com"] spec.summary = %q{multiplot for the gnuplot gem} spec.description = %q{simple multiplot interface to enhance the gnuplot gem} spec.homepage = "" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] [ ["gnuplot", "~> 2.6.2"], ].each do |args| spec.add_dependency(*args) end [ ["bundler", "~> 1.5.3"], ["rake"], ["rspec", "~> 2.14.1"], ["rdoc", "~> 4.1.0"], ["simplecov", "~> 0.8.2"], ].each do |args| spec.add_development_dependency(*args) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gnuplot-multiplot-0.0.1 | gnuplot-multiplot.gemspec |