Method: Flow::Flowfile.load

Defined in:
lib/flow-lite.rb

.load(code) ⇒ Object

another convenience method - use like Flowfile.load()



69
70
71
72
73
# File 'lib/flow-lite.rb', line 69

def self.load( code )
  flowfile = new
  flowfile.instance_eval( code )
  flowfile
end