0

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 クラスを再度開く必要があり、それをコントローラーにどのように含める必要がありますか?

4

1 に答える 1