forked from prawnpdf/prawn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prawn.gemspec
44 lines (34 loc) · 1.52 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Version numbering: http://wiki.github.com/sandal/prawn/development-roadmap
PRAWN_VERSION = "0.11.1"
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.authors = ["Gregory Brown","Brad Ediger","Daniel Nelson","Jonathen Greenberg","James Healy"]
spec.email = ["gregory.t.brown@gmail.com","brad@bradediger.com","dnelson@bluejade.com","greenberg@entryway.net","jimmy@deefa.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
spec.post_install_message = <<END_DESC
********************************************
A lot has changed since 0.8.4
Please read the changelog for details:
https://github.com/sandal/prawn/wiki/CHANGELOG
********************************************
END_DESC
end