1
0
Fork 0
mirror of https://github.com/activerecord-hackery/ransack.git synced 2022-11-09 13:47:45 -05:00

Add missing file from previous commit :bomb

This commit is contained in:
Jon Atack 2015-08-29 23:07:48 +02:00
parent 381a83cebe
commit ce114ec4de

View file

@ -70,7 +70,7 @@ module Ransack
:compounds => false,
:type => :boolean,
:validator => proc { |v| BOOLEAN_VALUES.include?(v) },
:formatter => proc { |v| [nil, EMPTY] }
:formatter => proc { |v| [nil, ''.freeze] }
}
],
['blank'.freeze, {
@ -78,7 +78,7 @@ module Ransack
:compounds => false,
:type => :boolean,
:validator => proc { |v| BOOLEAN_VALUES.include?(v) },
:formatter => proc { |v| [nil, EMPTY] }
:formatter => proc { |v| [nil, ''.freeze] }
}
],
['null'.freeze, {