Sha256: 4fb982d95068b3813cec2f69f277382877b9c9908f1f08ed1ea5d0d4103a3dcd
Contents?: true
Size: 1.82 KB
Versions: 1
Compression:
Stored size: 1.82 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', 'Cliff Campbell'] spec.email = ['howeszy@gmail.com', 'cliffcampbell@hey.com'] spec.summary = 'A Simple Searcher Framework' spec.description = 'Complex searching functionality as 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 'bundle-audit', '~> 0.1.0' spec.add_development_dependency 'dry-struct', '~> 1.0' spec.add_development_dependency 'fasterer', '~> 0.9.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.4 | snfoil-searcher.gemspec |