Skip to content

Commit

Permalink
Fix gemspec warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pointlessone committed Jan 4, 2017
1 parent c437c04 commit 63ff761
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions ttfunk.gemspec
Expand Up @@ -4,14 +4,9 @@ Gem::Specification.new do |spec|
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.files = Dir.glob("lib/**/*") +
['CHANGELOG.md', 'README.md', 'COPYING', 'LICENSE', 'GPLv2', 'GPLv3']
spec.required_ruby_version = '~> 2.1'
spec.add_development_dependency('rake')
spec.add_development_dependency('rspec')
spec.add_development_dependency('rubocop', '~> 0.46')
spec.add_development_dependency('yard')
spec.homepage = "https://prawnpdf.org"

spec.cert_chain = ['certs/pointlessone.pem']
if $PROGRAM_NAME.end_with? 'gem'
Expand All @@ -32,4 +27,12 @@ Gem::Specification.new do |spec|
"greenberg@entryway.net",
"jimmy@deefa.com"
]

spec.files = Dir.glob("lib/**/*") +
['CHANGELOG.md', 'README.md', 'COPYING', 'LICENSE', 'GPLv2', 'GPLv3']
spec.required_ruby_version = '~> 2.1'
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

0 comments on commit 63ff761

Please sign in to comment.