Sha256: 76e7b7bf37bd8c75b8efc32f8275c1afb8580dd9a9d2101b47a9e97ae6aede17

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

Gem::Specification.new do |spec|
  spec.name          = 'matchi'
  spec.version       = File.read('VERSION.semver').chomp
  spec.authors       = ['Cyril Wack']
  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',    '~> 1.10'
  spec.add_development_dependency 'rake',       '~> 10.4'
  spec.add_development_dependency 'yard',       '~> 0.8'
  spec.add_development_dependency 'simplecov',  '~> 0.10'
  spec.add_development_dependency 'rubocop',    '~> 0.34'

  spec.cert_chain   = ['certs/gem-fixrb-public_cert.pem']
  private_key       = File.expand_path('~/.ssh/gem-fixrb-private_key.pem')
  spec.signing_key  = private_key if File.exist?(private_key)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
matchi-0.1.2 matchi.gemspec
matchi-0.1.1 matchi.gemspec
matchi-0.1.0 matchi.gemspec