class Pug::Action::Output

Defines output of running an Action @!attribute action_name

@return [String] the name of the Action

@!attribute value

@return [String] the output of the Action

Attributes

action_name[R]
value[R]

Public Class Methods

new(action_name, value) click to toggle source

@param action_name [String] the name of the Action @param value [String] the output of the Action

# File lib/pug/action/output.rb, line 15
def initialize(action_name, value)
  @action_name = action_name
  @value = value
end