forked from prawnpdf/prawn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prawn.gemspec
26 lines (24 loc) · 984 Bytes
/
prawn.gemspec
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
26
# Version numbering: http://wiki.github.com/sandal/prawn/development-roadmap
PRAWN_VERSION = "0.10.0"
Gem::Specification.new do |spec|
spec.name = "prawn"
spec.version = PRAWN_VERSION
spec.platform = Gem::Platform::RUBY
spec.summary = "A fast and nimble PDF generator for Ruby"
spec.files = Dir.glob("{examples,lib,spec,vendor,data}/**/**/*") +
["Rakefile"]
spec.require_path = "lib"
spec.test_files = Dir[ "test/*_test.rb" ]
spec.has_rdoc = true
spec.extra_rdoc_files = %w{HACKING README LICENSE COPYING}
spec.rdoc_options << '--title' << 'Prawn Documentation' <<
'--main' << 'README' << '-q'
spec.author = "Gregory Brown"
spec.email = " [email protected]"
spec.rubyforge_project = "prawn"
spec.add_dependency('pdf-reader', '>=0.8.1')
spec.homepage = "http://prawn.majesticseacreature.com"
spec.description = <<END_DESC
Prawn is a fast, tiny, and nimble PDF generator for Ruby
END_DESC
end