The matcher `foo_not_ends_with` dosen't work, `foo_not_end` works: ``` ruby Bar.search(foo_not_ends_with: "bla").result #=> returns all Bar's Bar.search(foo_not_end: "bla").result #=> returns matched Bar's ```
The matcher
foo_not_ends_withdosen't work,foo_not_endworks: