I want to add custom methods to the Recurly::Account class by reopening it, and then use it in my controller.
something like this:
#reopen class
class Recurly::Account
#my custom method
def my_meth_1
end
end
class MyController
def index
account = Recurly::Account.find( ... ) #gem method
account.my_meth_1 #my custom method
end
end
In which file should I reopen the Recurly::Account class and how should it be included in my controller?