2011-03-30 20:31:39 -04:00
# -*- encoding: utf-8 -*-
2020-12-23 02:05:09 -05:00
2011-03-30 20:31:39 -04: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 10:21:59 -04:00
s . authors = [ " Ernie Miller " , " Ryan Bigg " , " Jon Atack " , " Sean Carroll " , " David Rodríguez " ]
2020-12-23 02:05:09 -05:00
s . email = [ " ernie@erniemiller.org " , " radarlistener@gmail.com " , " jonnyatack@gmail.com " , " sfcarroll@gmail.com " ]
2014-01-02 04:27:52 -05:00
s . homepage = " https://github.com/activerecord-hackery/ransack "
2022-03-30 10:25:03 -04:00
s . summary = %q{ Object-based searching for Active Record. }
2011-06-06 21:32:03 -04:00
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. }
2020-12-25 02:19:52 -05:00
s . required_ruby_version = '>= 2.6'
2013-11-14 18:10:24 -05:00
s . license = 'MIT'
2011-03-30 20:31:39 -04:00
2022-03-04 07:58:28 -05:00
s . add_dependency 'activerecord' , '>= 6.0.4'
s . add_dependency 'activesupport' , '>= 6.0.4'
2013-12-15 13:41:13 -05:00
s . add_dependency 'i18n'
2014-01-02 04:27:52 -05:00
2020-01-21 03:44:42 -05: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-30 20:31:39 -04:00
s . require_paths = [ " lib " ]
end