我正在修补concern in the Devise Token Auth gem。
我让它与alias_method_chain
合作,但我想知道我是否可以在这种情况下使用module#prepend
?
注意:我们使用的是ruby 2.2.x
现有:
DeviseTokenAuth::Concerns::User.module_eval do
def token_validation_response_with_customer_info
json = token_validation_response_without_customer_info
# add some customer stuff based on has_role? check
json
end
alias_method_chain :token_validation_response, :customer_info
end
答案 0 :(得分:0)
你可以尝试
DeviseTokenAuth::Concerns::User.prepend(
Module.new do
def token_validation_response
json = super
# add some customer stuff based on has_role? check
json
end
end
)