# application_helper.rb
def do_some_stuff
...
end
# my_model.rb
def my_model_method
# I want to call the method "do_some_stuff" here, how exactly?
end
Obviously, I can't just call do_some_stuff
, since it would tell me that the model does not have this method.