Sha256: abfdbe30f18f9333fa67d14b9c0b85ea4272fb38e76e73b32286568a9dbff414

Contents?: true

Size: 1.7 KB

Versions: 1

Compression:

Stored size: 1.7 KB

Contents

# frozen_string_literal: true

require_relative 'lib/snfoil/searcher/version'

Gem::Specification.new do |spec|
  spec.name          = 'snfoil-searcher'
  spec.version       = SnFoil::Searcher::VERSION
  spec.authors       = ['Matthew Howes']
  spec.email         = ['howeszy@gmail.com']

  spec.summary       = 'A Simple Searcher Framework'
  spec.description   = 'SnFoil Searchers allow you to break complex searching functionality into small easily testable sections.'
  spec.homepage      = 'https://github.com/limited-effort/snfoil-searcher'
  spec.license       = 'Apache-2.0'
  spec.required_ruby_version = '>= 2.5.0'

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = spec.homepage
  spec.metadata['changelog_uri'] = 'https://github.com/limited-effort/snfoil-searcher/blob/main/CHANGELOG.md'

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
  end

  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_dependency 'activesupport', '>= 5.2.6'

  spec.add_development_dependency 'dry-struct', '~> 1.0'
  spec.add_development_dependency 'pry-byebug', '~> 3.9'
  spec.add_development_dependency 'rake', '~> 13.0'
  spec.add_development_dependency 'rspec', '~> 3.10'
  spec.add_development_dependency 'rubocop', '~> 1.21'
  spec.add_development_dependency 'rubocop-performance', '~> 1.11'
  spec.add_development_dependency 'rubocop-rspec', '~> 2.5'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
snfoil-searcher-0.0.1 snfoil-searcher.gemspec