Sha256: 60ccfad42f1532068b74499ffb46b5583d3efc3e2af67006a4006201e906b43c

Contents?: true

Size: 947 Bytes

Versions: 1

Compression:

Stored size: 947 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dry/matcher/version'

Gem::Specification.new do |spec|
  spec.name           = 'dry-matcher'
  spec.version        = Dry::Matcher::VERSION
  spec.authors        = ['Tim Riley', 'Nikita Shilnikov']
  spec.email          = ['tim@icelab.com.au', 'fg@flashgordon.ru']
  spec.license        = 'MIT'

  spec.summary        = 'Flexible, expressive pattern matching for Ruby'
  spec.description    = spec.summary
  spec.homepage       = 'http://dry-rb.org/gems/dry-matcher'

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|bin)/}) }
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.required_ruby_version = '>= 2.4.0'

  spec.add_runtime_dependency 'dry-core', '>= 0.4.8'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dry-matcher-0.8.2 dry-matcher.gemspec