forked from prawnpdf/prawn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prawn.gemspec
52 lines (43 loc) · 1.61 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
45
46
47
48
49
50
51
52
# frozen_string_literal: true
basedir = __dir__
require "#{basedir}/lib/prawn/version"
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.cert_chain = ['certs/pointlessone.pem']
if $PROGRAM_NAME.end_with? 'gem'
spec.signing_key = File.expand_path('~/.gem/gem-private_key.pem')
end
spec.files = Dir.glob('{examples,lib,spec,manual}/**/**/*') +
Dir.glob('data/fonts/{MustRead.html,*.afm}') +
[
'Rakefile', 'prawn.gemspec', 'Gemfile',
'COPYING', 'LICENSE', 'GPLv2', 'GPLv3',
'.yardopts'
]
spec.require_path = 'lib'
spec.required_ruby_version = '>= 2.6'
spec.required_rubygems_version = '>= 1.3.6'
spec.authors = [
'Gregory Brown', 'Brad Ediger', 'Daniel Nelson', 'Jonathan Greenberg',
'James Healy'
]
spec.email = [
]
spec.licenses = %w[PRAWN GPL-2.0 GPL-3.0]
spec.add_dependency('matrix', '~> 0.4')
spec.add_dependency('pdf-core', '~> 0.9.0')
spec.add_dependency('ttfunk', '~> 1.7')
spec.add_development_dependency('pdf-inspector', '>= 1.2.1', '< 2.0.a')
spec.add_development_dependency('pdf-reader', ['~> 1.4', '>= 1.4.1'])
spec.add_development_dependency('prawn-dev', '~> 0.3.0')
spec.add_development_dependency('prawn-manual_builder', '>= 0.3.0')
spec.homepage = 'http://prawnpdf.org'
spec.description = <<END_DESC
Prawn is a fast, tiny, and nimble PDF generator for Ruby
END_DESC
end