the Rails model has one field that is the main search term i am searching for, and (coincidentally) is the "model" name of the product (think motor parts).
If I search (without quotes) for "2000" (or "2000 "), I get that error, but if I search for "2000 34" or "2000 x" I do not get that error.
I am thinking that the bug might be that rails_admin is trying too hard ... by noticing that "2000" and "2000 " are integers and at some point it tries to coerce some column into a fixnum?
I am getting this error in rails_admin:
With the following details on a model whose :
the Rails model has one field that is the main search term i am searching for, and (coincidentally) is the "model" name of the product (think motor parts).
If I search (without quotes) for "2000" (or "2000 "), I get that error, but if I search for "2000 34" or "2000 x" I do not get that error.
I am thinking that the bug might be that rails_admin is trying too hard ... by noticing that "2000" and "2000 " are integers and at some point it tries to coerce some column into a fixnum?