forked from prawnpdf/ttfunk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ttfunk.gemspec
38 lines (34 loc) · 1.12 KB
/
ttfunk.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
Gem::Specification.new do |spec|
spec.name = 'ttfunk'
spec.version = '1.5.1'
spec.platform = Gem::Platform::RUBY
spec.summary = 'TrueType Font Metrics Parser'
spec.description = 'Font Metrics Parser for the Prawn PDF generator'
spec.licenses = %w[Nonstandard GPL-2.0 GPL-3.0]
spec.homepage = 'https://prawnpdf.org'
spec.cert_chain = ['certs/pointlessone.pem']
if $PROGRAM_NAME.end_with? 'gem'
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end
spec.authors = [
'Gregory Brown',
'Brad Ediger',
'Daniel Nelson',
'Jonathan Greenberg',
'James Healy'
]
spec.email = [
]
spec.files = Dir.glob('lib/**/*') +
['CHANGELOG.md', 'README.md', 'COPYING', 'LICENSE', 'GPLv2', 'GPLv3']
spec.required_ruby_version = '~> 2.2'
spec.add_development_dependency('rake', '~> 12')
spec.add_development_dependency('rspec', '~> 3.5')
spec.add_development_dependency('rubocop', '~> 0.46')
spec.add_development_dependency('yard', '~> 0.9')
end