Method: BOAST::CKernel#method_missing

Defined in:
lib/BOAST/CKernel.rb

#method_missing(meth, *args, &block) ⇒ Object



674
675
676
677
678
679
680
681
# File 'lib/BOAST/CKernel.rb', line 674

def method_missing(meth, *args, &block)
 if meth.to_s == "run" then
   self.build
   self.run(*args,&block)
 else
   super
 end
end