class Ovto::Actions

Base class for ovto actions.

Attributes

wired_actions[W]

WiredActions must be set after initialization (this cannot be an argument of initialize because Actions and WiredActions have references to each other)

Public Instance Methods

actions() click to toggle source
# File lib/ovto/actions.rb, line 9
def actions
  @wired_actions
end
middleware_name() click to toggle source
# File lib/ovto/actions.rb, line 17
def middleware_name
  WiredActionSet::I_AM_APP_NOT_A_MIDDLEWARE
end
middleware_path() click to toggle source
# File lib/ovto/actions.rb, line 21
def middleware_path
  []
end
state() click to toggle source
# File lib/ovto/actions.rb, line 13
def state
  @wired_actions._app.state
end