class ActionFlow::Variable
Public Class Methods
new(symbol)
click to toggle source
# File lib/action_flow/variable.rb, line 4 def initialize(symbol) @name = symbol end
Public Instance Methods
lookup(env)
click to toggle source
# File lib/action_flow/variable.rb, line 8 def lookup(env) env[@name] end