forked from delano/scruffy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgemspec
23 lines (20 loc) · 816 Bytes
/
gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = "scruffy"
s.version = "0.2.9"
s.authors = ["Brasten Sager", "samhendley", "delano"]
s.date = "2009-01-23"
s.description = "Scruffy is a Ruby library for generating high quality, good looking graphs. It is designed to be easy to use and highly customizable."
s.email = ["[email protected]", "[email protected]"]
s.has_rdoc = true
s.homepage = "http://scruffy.rubyforge.org"
s.rdoc_options = ['--quiet', '--title', 'scruffy documentation',
"--opname", "index.html",
"--line-numbers",
"--main", "README.txt",
"--inline-source"]
s.summary = "A powerful, clean graphing library for Ruby."
s.files = Dir['lib/**/*.rb']
s.files += Dir['*.txt']
s.test_files = Dir['test/**/*.rb']
s.add_dependency("builder", [">= 2.0.0"])
end