Sha256: 1534493e2d26383c124eb72481879f55ac4cfbda2089c9297aaf5302a68c08eb
Contents?: true
Size: 937 Bytes
Versions: 1
Compression:
Stored size: 937 Bytes
Contents
# frozen_string_literal: true Gem::Specification.new do |spec| spec.name = 'matchi' spec.version = File.read('VERSION.semver').chomp spec.authors = ['Cyril Kato'] spec.email = ['contact@cyril.email'] spec.summary = 'Collection of matchers.' spec.description = 'Collection of expectation matchers for Ruby.' spec.homepage = 'https://github.com/fixrb/matchi' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 2.0' spec.add_development_dependency 'rake', '~> 12.3' spec.add_development_dependency 'rubocop', '~> 0.67' spec.add_development_dependency 'simplecov', '~> 0.16' spec.add_development_dependency 'yard', '~> 0.9' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
matchi-1.0.4 | matchi.gemspec |