forked from prawnpdf/pdf-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdf-inspector.gemspec
29 lines (27 loc) · 1.24 KB
/
pdf-inspector.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
Gem::Specification.new do |spec|
spec.name = "pdf-inspector"
spec.version = "1.0.0"
spec.platform = Gem::Platform::RUBY
spec.summary = "A tool for analyzing PDF output"
spec.homepage = "https://github.com/sandal/pdf-inspector"
spec.files = Dir.glob("{lib}/**/**/*") +
["CHANGELOG", "README", "COPYING", "LICENSE", "GPLv2", "GPLv3"]
spec.extra_rdoc_files = %w{CHANGELOG README}
spec.rdoc_options << '--title' << 'PDF::Inspector' <<
'--main' << 'README' << '-q'
spec.authors = ["Gregory Brown","Brad Ediger", "Daniel Nelson",
"Jonathan Greenberg","James Healy"]
spec.email = ["gregory.t.brown@gmail.com","brad@bradediger.com",
"dnelson77@gmail.com", "greenberg@entryway.net",
"jimmy@deefa.com"]
spec.add_dependency('pdf-reader', '>=0.9.0')
spec.description = <<END_DESC
This library provides a number of PDF::Reader[0] based tools for use in testing
PDF output. Presently, the primary purpose of this tool is to support the
tests found in Prawn[1], a pure Ruby PDF generation library.
However, it may be useful to others, so we have made it available as a gem in
its own right.
[0] https://github.com/yob/pdf-reader
[1] https://github.com/sandal/prawn
END_DESC
end