module Cuprum::Rails::Responders::Actions

Implements matching a result to action-specific response clauses.

Public Class Methods

included(other) click to toggle source

@private

Calls superclass method
# File lib/cuprum/rails/responders/actions.rb, line 61
def self.included(other)
  super

  other.extend(ClassMethods)
end

Private Instance Methods

matcher_options() click to toggle source
Calls superclass method
# File lib/cuprum/rails/responders/actions.rb, line 69
def matcher_options
  super().merge(action_name: action_name)
end