Sha256: 4d0b6c15bc7d9fd8a1f4ea00a8782f685cdf055a1a765fa0e992382e2f8fdad3

Contents?: true

Size: 1.82 KB

Versions: 2

Compression:

Stored size: 1.82 KB

Contents

# frozen_string_literal: true

require_relative "lib/tiny_filter/version"

Gem::Specification.new do |spec|
  spec.name = "tiny_filter"
  spec.version = TinyFilter::VERSION
  spec.authors = ["Kirill Usanov", "LassoID"]
  spec.email = "kirill@lassoid.ru"

  spec.summary = "Tiny filtering for ActiveRecord, Sequel and enumerables."
  spec.description = "Simple filtering for ActiveRecord, Sequel and enumerables."
  spec.homepage = "https://github.com/lassoid/tiny_filter"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/lassoid/tiny_filter"
  spec.metadata["changelog_uri"] = "https://github.com/lassoid/tiny_filter/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(__dir__) do
    %x(git ls-files -z).split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  # Dependencies
  spec.add_development_dependency "activerecord", ">= 6.0"
  spec.add_development_dependency "railties", ">= 6.0"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "rubocop"
  spec.add_development_dependency "rubocop-performance"
  spec.add_development_dependency "rubocop-rails"
  spec.add_development_dependency "rubocop-rake"
  spec.add_development_dependency "rubocop-rspec"
  spec.add_development_dependency "rubocop-shopify"
  spec.add_development_dependency "sequel"
  spec.add_development_dependency "sqlite3"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tiny_filter-0.3.1 tiny_filter.gemspec
tiny_filter-0.3.0 tiny_filter.gemspec