Sha256: 4f1c80fd05acbe92d6c94f3f769742d8f72ea84b65e2b50be9540c24d72be2c7
Contents?: true
Size: 495 Bytes
Versions: 25
Compression:
Stored size: 495 Bytes
Contents
# This sets up aliases for old Metasearch query methods so they behave # identically to the versions given in Ransack. # Ransack.configure do |config| {'contains'=>'cont', 'starts_with'=>'start', 'ends_with'=>'end'}.each do |old,current| config.add_predicate old, Ransack::Constants::DERIVED_PREDICATES.detect{ |q, _| q == current }[1] end {'equals'=>'eq', 'greater_than'=>'gt', 'less_than'=>'lt'}.each do |old,current| config.add_predicate old, arel_predicate: current end end
Version data entries
25 entries across 25 versions & 5 rubygems