I needed to change the below lines to make almost all examples pass:
https://github.com/vicentemundim/mongoid_query_string_interface/blob/master/spec/mongoid/query_string_interface_spec.rb#L21
def self.default_sorting_options
[:created_at.desc, :updated_at.asc]
end
to
def self.default_sorting_options
['created_at.desc', 'updated_at.asc']
end
Examples using queries with dates are failing too:
https://github.com/vicentemundim/mongoid_query_string_interface/blob/master/spec/mongoid/query_string_interface_spec.rb#L213
Thanks in advance!
I needed to change the below lines to make almost all examples pass:
https://github.com/vicentemundim/mongoid_query_string_interface/blob/master/spec/mongoid/query_string_interface_spec.rb#L21
to
Examples using queries with dates are failing too:
https://github.com/vicentemundim/mongoid_query_string_interface/blob/master/spec/mongoid/query_string_interface_spec.rb#L213
Thanks in advance!