Ruby on Rails で次の設定を行ったとします。
class A < ActiveRecord::Base
after_create :perform_some_action
#...
private
def perform_some_action
if some_condition_met?
#take some action
end
end
perform_some_action
条件に依存することを示すために、メソッド名に何かを追加する必要がありますか?