Sha256: ac63bd3f9246aee5d0f76817cb7b4a117aeae63b34c434fe1d244f6d28da41eb

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

# frozen_string_literal: true
# this file is managed by dry-rb/devtools project

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.authors       = ["Tim Riley", "Nikita Shilnikov"]
  spec.email         = ["tim@icelab.com.au", "fg@flashgordon.ru"]
  spec.license       = 'MIT'
  spec.version       = Dry::Matcher::VERSION.dup

  spec.summary       = "Flexible, expressive pattern matching for Ruby"
  spec.description   = spec.summary
  spec.homepage      = 'https://dry-rb.org/gems/dry-matcher'
  spec.files         = Dir["CHANGELOG.md", "LICENSE", "README.md", "dry-matcher.gemspec", "lib/**/*"]
  spec.bindir        = 'bin'
  spec.executables   = []
  spec.require_paths = ['lib']

  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
  spec.metadata['changelog_uri']     = 'https://github.com/dry-rb/dry-matcher/blob/master/CHANGELOG.md'
  spec.metadata['source_code_uri']   = 'https://github.com/dry-rb/dry-matcher'
  spec.metadata['bug_tracker_uri']   = 'https://github.com/dry-rb/dry-matcher/issues'

  spec.required_ruby_version = ">= 2.5.0"

  # to update dependencies edit project.yml
  spec.add_runtime_dependency "dry-core", "~> 0.4", ">= 0.4.8"

  spec.add_development_dependency "rake"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dry-matcher-0.9.0 dry-matcher.gemspec