search for: normalize_for_sroting

Displaying 1 result from an estimated 1 matches for "normalize_for_sroting".

Did you mean: normalize_for_sorting
2006 Feb 19
2
how would you implement this normalizer?
...n Ruby land, and since the same criteria has to be used throughout the application I was thinking on some sort of generator whose usage would be: class User < ActiveRecord::Base normalize_for_sorting :surname end The intention is not to modify surname, we need it in the views, normalize_for_sroting would generate a method User#surname_for_sorting and configure it as a creation/finding filter that applies the necessary tr///. The aim is: * We normalize the strings once and store them in attributes instead of applying the normalizer in all sort blocks * The tr///, the conf...