forked from prawnpdf/prawn-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prawn-templates.gemspec
34 lines (33 loc) · 1.46 KB
/
prawn-templates.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
Gem::Specification.new do |spec|
spec.name = 'prawn-templates'
spec.version = File.read(File.expand_path('VERSION', File.dirname(__FILE__)))
.strip
spec.platform = Gem::Platform::RUBY
spec.summary = 'Prawn::Templates allows using PDFs as templates in Prawn'
spec.files = Dir.glob('{lib}/**/**/*') + [
'prawn-templates.gemspec', 'COPYING', 'LICENSE', 'GPLv2', 'GPLv3'
]
spec.require_path = 'lib'
spec.required_ruby_version = '>= 1.9.3'
spec.required_rubygems_version = '>= 1.3.6'
spec.licenses = %w[Nonstandard GPL-2.0 GPL-3.0]
spec.authors = [
'Gregory Brown', 'Brad Ediger', 'Daniel Nelson', 'Jonathan Greenberg',
'James Healy', 'Burkhard Vogel-Kreykenbohm'
]
spec.email = [
]
spec.add_dependency('pdf-reader', '~> 2.0')
spec.add_dependency('prawn', '~> 2.2')
spec.add_development_dependency('pdf-inspector', '~> 1.3')
spec.add_development_dependency('rspec', '~> 3.0')
spec.add_development_dependency('rake', '~> 12.0')
spec.add_development_dependency('rubocop', '~> 0.47')
spec.add_development_dependency('rubocop-rspec', '~> 1.10')
spec.homepage = 'https://github.com/prawnpdf/prawn-templates'
spec.description = 'A extention to prawn that allows to include other pdfs '\
'either as background to write upon or to combine several pdf documents '\
'into one.'
end