I want to make a search for all fields that are NULL or have the value of -1 using ransack.
search({:param_name_null => 1 })
will give the nulls
search({:param_name_is_any => -1 })
will give the -1s
How do i make an OR between these two using ransack? Thanks