Ну, вы можете открыть ActiveRecord::Base
и добавить туда метод:
class ActiveRecord::Base
def self.fix_camelcase_columns
define_method :after_find do
...
end
end
end
Для более чистого способа создайте модуль:
module CamelcaseFixer
def self.included(base)
base.extend(self)
end
def fix_camelcase_columns
define_method :after_find do
...
end
end
end
и затем в вашей модели сделайте
class Model < ActiveRecord::Base
include CamelcaseFixer
fix_camelcase_columns
end
Не тестировал код, посмотрите, работает ли он.