-
Notifications
You must be signed in to change notification settings - Fork 1
/
pdf_matcher.gemspec
23 lines (19 loc) · 995 Bytes
/
pdf_matcher.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative 'lib/pdf_matcher/version'
Gem::Specification.new do |spec|
spec.name = 'pdf_matcher'
spec.version = PdfMatcher::VERSION
spec.authors = ['Katsuya Hidaka']
spec.email = ['hidakatsuya@gmail.com']
spec.summary = 'A gem to compare two PDFs and output the differences using diff-pdf'
spec.description = 'PdfMatcher is a gem to compare two PDFs and output the differences using diff-pdf'
spec.homepage = 'https://github.com/hidakatsuya/pdf_matcher'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = 'https://github.com/hidakatsuya/pdf_matcher/blob/main/CHANGELOG.md'
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) }
end
spec.require_paths = ['lib']
end