Module: SuperProcess::Basic

Defined in:
lib/super_process/basic.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

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



4
5
6
7
8
9
10
# File 'lib/super_process/basic.rb', line 4

def method_missing(m, *args, &block)
  if block_given?
    new.public_send(m, *args, &block)
  else
    new.public_send(m, *args)
  end
end