2011-03-30 20:31:39 -04:00
# -*- encoding: utf-8 -*-
$: . 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
2017-12-29 19:21:33 -05:00
s . authors = [ " Ernie Miller " , " Ryan Bigg " , " Jon Atack " , " Sean Carroll " ]
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 "
2015-08-20 05:40:51 -04:00
s . summary = %q{ Object-based searching for Active Record and Mongoid (currently). }
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. }
2019-10-13 10:33:57 -04:00
s . required_ruby_version = '>= 2.3'
2013-11-14 18:10:24 -05:00
s . license = 'MIT'
2011-03-30 20:31:39 -04:00
2019-10-16 05:31:04 -04:00
s . add_dependency 'activerecord' , '>= 5.2.1'
s . add_dependency 'activesupport' , '>= 5.2.1'
2013-12-15 13:41:13 -05:00
s . add_dependency 'i18n'
2019-02-10 06:42:09 -05:00
s . add_dependency 'polyamorous' , Ransack :: VERSION . to_s
2019-10-16 06:50:13 -04:00
s . add_development_dependency 'actionpack' , '>= 5.0'
2015-07-26 12:46:30 -04:00
s . files = ` git ls-files ` . split ( " \n " )
2014-01-02 04:27:52 -05:00
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