forked from prawnpdf/pdf-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpdf-core.gemspec
44 lines (41 loc) · 1.69 KB
/
pdf-core.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'pdf-core'
spec.version = '0.8.1'
spec.platform = Gem::Platform::RUBY
spec.summary = 'PDF::Core is used by Prawn to render PDF documents'
spec.files = Dir.glob('lib/**/**/*') +
%w[COPYING GPLv2 GPLv3 LICENSE] +
%w[Gemfile Rakefile] +
['pdf-core.gemspec']
spec.require_path = 'lib'
spec.required_ruby_version = '>= 2.3'
spec.required_rubygems_version = '>= 1.3.6'
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.extra_rdoc_files = %w{README.md LICENSE COPYING GPLv2 GPLv3}
# spec.rdoc_options << '--title' << 'Prawn Documentation' <<
# '--main' << 'README.md' << '-q'
spec.authors = [
'Gregory Brown', 'Brad Ediger', 'Daniel Nelson', 'Jonathan Greenberg',
'James Healy'
]
spec.email = [
]
spec.rubyforge_project = 'prawn'
spec.licenses = %w[PRAWN GPL-2.0 GPL-3.0]
spec.add_development_dependency('bundler')
spec.add_development_dependency('pdf-inspector', '~> 1.1.0')
spec.add_development_dependency('pdf-reader', '~>1.2')
spec.add_development_dependency('rake')
spec.add_development_dependency('rspec')
spec.add_development_dependency('rubocop', '~> 0.55')
spec.add_development_dependency('rubocop-rspec', '~> 1.25')
spec.add_development_dependency('simplecov')
spec.homepage = 'http://prawnpdf.org'
spec.description = 'PDF::Core is used by Prawn to render PDF documents'
end