Ruby On Rails - upper case acronyms in class names
If you prefer to have class names with upper case acronyms like ImportUsersFromXLS
instead of ImportUsersFromXls
than all you have to do is add this code:
ActiveSupport::Inflector.inflections(:en) do |inflect|
inflect.acronym 'XLS'
end
into config/initializers/inflections.rb