I would like to know how would I go about accessing the methods in this module from another .rb file
module Decisioning
module Decision
class OfferProxy < FinanceApplication::Offer
def my_method
"some value"
end
end
end
end
So how would I access my_method from another .rb file?
maby something like
include ::Decisioning::Decision::OfferProxy
can I then use
my_method