class Sliver::Hook

Attributes

action[R]
response[R]

Public Class Methods

call(action, response) click to toggle source
# File lib/sliver/hook.rb, line 2
def self.call(action, response)
  new(action, response).call
end
new(action, response) click to toggle source
# File lib/sliver/hook.rb, line 6
def initialize(action, response)
  @action, @response = action, response
end