forked from yob/pdf-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfireinc-pdf-reader.gemspec
More file actions
26 lines (24 loc) · 1.18 KB
/
fireinc-pdf-reader.gemspec
File metadata and controls
26 lines (24 loc) · 1.18 KB
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
# RSpec files aren't included, as they depend on the PDF files,
# which will make the gem filesize irritatingly large
Gem::Specification.new do |spec|
spec.name = "fireinc-pdf-reader"
spec.version = "0.11.0"
spec.summary = "A library for accessing the content of PDF files"
spec.description = "The PDF::Reader library implements a PDF parser conforming as much as possible to the PDF specification from Adobe"
spec.files = Dir.glob("{examples,lib}/**/**/*") + ["Rakefile"]
spec.executables << "pdf_object"
spec.executables << "pdf_text"
spec.executables << "pdf_list_callbacks"
spec.has_rdoc = true
spec.extra_rdoc_files = %w{README.rdoc TODO CHANGELOG MIT-LICENSE }
spec.rdoc_options << '--title' << 'PDF::Reader Documentation' <<
'--main' << 'README.rdoc' << '-q'
spec.authors = ["Caleb Adam Haye","James Healy"]
spec.email = ["caleb@fire.coop","jimmy@deefa.com"]
spec.homepage = "https://github.com/calebhaye/pdf-reader"
spec.required_ruby_version = ">=1.8.7"
spec.add_development_dependency("rake")
spec.add_development_dependency("roodi")
spec.add_development_dependency("rspec", "~>2.1")
spec.add_dependency('Ascii85', '~> 1.0.0')
end