I'm using Rails 3.2.
I'm localizing my site in Romanian. In regular expressions, the regexp interval [a-z] should contain, in order, the following letters: a, ă, â, b, c etc.
Is there a way to tell my application that [a-z] should be the list above, based on my locale?
Also, there is an issue with capitalizing - "â".upcase doesn't result in "Â".
Or, maybe these features are not implemented yet in Rails?