psyipm/query_filter

View on GitHub
query_filter.gemspec

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = 'query_filter'
  spec.version       = QueryFilter::VERSION
  spec.authors       = ['Igor Galeta', 'Igor Malinovskiy']
  spec.email         = ['igor.malinovskiy@netfix.xyz']

  spec.summary       = 'ActiveRecord query filter gem'
  spec.description   = 'This gem provides DSL to write custom complex filters for ActiveRecord models'
  spec.homepage      = 'https://github.com/psyipm/query_filter'
  spec.license       = 'MIT'

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

  spec.add_development_dependency 'activerecord', '>= 4.0'
  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec', '>= 3.0'
  spec.add_development_dependency 'sqlite3', '>= 1.3.13'

  spec.add_dependency 'activesupport', '>= 4.0'
end