activerecord-hackery--ransack/ransack.gemspec

27 lines
1.1 KiB
Ruby
Raw Permalink Normal View History

2011-03-31 00:31:39 +00:00
# -*- encoding: utf-8 -*-
2011-03-31 00:31:39 +00:00
$:.push File.expand_path("../lib", __FILE__)
require "ransack/version"
Gem::Specification.new do |s|
s.name = "ransack"
s.version = Ransack::VERSION
s.platform = Gem::Platform::RUBY
2022-03-30 14:21:59 +00:00
s.authors = ["Ernie Miller", "Ryan Bigg", "Jon Atack", "Sean Carroll", "David Rodríguez"]
s.email = ["ernie@erniemiller.org", "radarlistener@gmail.com", "jonnyatack@gmail.com", "sfcarroll@gmail.com"]
s.homepage = "https://github.com/activerecord-hackery/ransack"
2022-03-30 14:25:03 +00:00
s.summary = %q{Object-based searching for Active Record.}
s.description = %q{Ransack is the successor to the MetaSearch gem. It improves and expands upon MetaSearch's functionality, but does not have a 100%-compatible API.}
s.required_ruby_version = '>= 2.7'
s.license = 'MIT'
2011-03-31 00:31:39 +00:00
2022-05-06 07:23:48 +00:00
s.add_dependency 'activerecord', '>= 6.1.5'
s.add_dependency 'activesupport', '>= 6.1.5'
s.add_dependency 'i18n'
2020-01-21 08:44:42 +00:00
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
2011-03-31 00:31:39 +00:00
s.require_paths = ["lib"]
end