class Aldous::Respondable::SendData

Public Instance Methods

action(controller) click to toggle source
# File lib/aldous/respondable/send_data.rb, line 6
def action(controller)
  SendDataAction.new(data, options, controller, view_data)
end
data() click to toggle source
# File lib/aldous/respondable/send_data.rb, line 10
def data
  raise Errors::UserError.new("SendData objects must define a 'data' method")
end
options() click to toggle source
# File lib/aldous/respondable/send_data.rb, line 14
def options
  raise Errors::UserError.new("SendData objects must define an 'options' method")
end