Just open the class:
module ReputationSystem class Evaluation < ActiveRecord::Base def my_method_here puts "Yey!" end end end
You can put this file in config/initializers/my_monkey_patch.rb or in lib/my_monkey_patch.rb , but later you need to load it into your code.
source share