-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdf_matcher-testing.gemspec
25 lines (20 loc) · 1.05 KB
/
pdf_matcher-testing.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
require_relative 'lib/pdf_matcher/testing/version'
Gem::Specification.new do |spec|
spec.name = 'pdf_matcher-testing'
spec.version = PdfMatcher::Testing::VERSION
spec.authors = ['Katsuya Hidaka']
spec.email = ['hidakatsuya@gmail.com']
spec.description = 'This gem allows testing frameworks such as Test::Unit, RSpec and Minitest to perform PDF matching tests with the pdf_matcher gem.'
spec.summary = spec.description
spec.homepage = 'https://github.com/hidakatsuya/pdf_matcher-testing'
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-testing/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']
spec.add_dependency 'pdf_matcher', '>= 2.2.0'
end