forked from prawnpdf/prawn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prawn.gemspec
29 lines (27 loc) · 1.1 KB
/
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
27
28
29
# Version numbering: http://wiki.github.com/sandal/prawn/development-roadmap
PRAWN_VERSION = "0.11.1.pre"
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,data}/**/**/*") +
["Rakefile", "prawn.gemspec"]
spec.require_path = "lib"
spec.required_ruby_version = '>= 1.8.7'
spec.required_rubygems_version = ">= 1.3.6"
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 = " gregory.t.brown@gmail.com"
spec.rubyforge_project = "prawn"
spec.add_dependency('pdf-reader', '>=0.9.0')
spec.add_dependency('ttfunk', '~>1.0.0')
spec.homepage = "http://prawn.majesticseacreature.com"
spec.description = <<END_DESC
Prawn is a fast, tiny, and nimble PDF generator for Ruby
END_DESC
end