forked from gdelugre/origami
-
Notifications
You must be signed in to change notification settings - Fork 2
/
origami.gemspec
37 lines (31 loc) · 1.28 KB
/
origami.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
require_relative 'lib/origami/version'
Gem::Specification.new do |s|
s.name = "origami"
s.version = Origami::VERSION
s.author = "Guillaume Delugré"
s.email = "[email protected]"
s.homepage = "http://github.com/gdelugre/origami"
s.platform = Gem::Platform::RUBY
s.summary = "Ruby framework to manipulate PDF documents"
s.description = "Origami is a pure Ruby library to parse, modify and generate PDF documents."
s.files = Dir[
'README.md',
'CHANGELOG.md',
'COPYING.LESSER',
"{lib,bin,test,examples}/**/*",
"bin/shell/.irbrc"
]
s.require_path = "lib"
s.has_rdoc = true
s.test_file = "test/test_pdf.rb"
s.license = "LGPL-3.0+"
s.required_ruby_version = '>= 2.1'
s.add_runtime_dependency "colorize", "~> 0.7"
s.add_development_dependency "minitest", "~> 5.0"
s.bindir = "bin"
s.executables = %w(pdfsh
pdf2pdfa pdf2ruby
pdfcop pdfmetadata
pdfdecompress pdfdecrypt pdfencrypt
pdfexplode pdfextract)
end