-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgnuplotter.gemspec
More file actions
21 lines (19 loc) · 794 Bytes
/
gnuplotter.gemspec
File metadata and controls
21 lines (19 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$:.push File.expand_path("../lib", __FILE__)
require 'gnuplotter/version'
Gem::Specification.new do |s|
s.name = 'gnuplotter'
s.version = GnuPlotter::VERSION
s.platform = Gem::Platform::RUBY
s.date = Time.now.strftime("%F")
s.summary = "GnuPlotter"
s.description = "GnuPlotter is a wrapper around gnuplot."
s.authors = ["Martin A. Hansen"]
s.email = 'mail@maasha.dk'
s.rubyforge_project = "gnuplotter"
s.homepage = 'http://github.com/maasha/gnuplotter'
s.license = 'GPL2'
s.rubygems_version = "2.0.0"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
end