我想通过重新打开它来向Recurly::Account类添加自定义方法,然后在我的控制器中使用它。
像这样的东西:
#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
我应该在哪个文件中重新打开 Recurly::Account 类,它应该如何包含在我的控制器中?