Module: ActionFlow::Expression::Generator
- Included in:
- DSL
- Defined in:
- lib/action_flow/expression.rb
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, params = {}, &block) ⇒ Object
114
115
116
|
# File 'lib/action_flow/expression.rb', line 114
def method_missing(name, params = {}, &block)
Expression.new(name, params, &block)
end
|
Instance Method Details
#find(symbol) ⇒ Object
128
129
130
|
# File 'lib/action_flow/expression.rb', line 128
def find(symbol)
Variable.new(symbol)
end
|