Method: PSD::LazyExecute#now

Defined in:
lib/psd/lazy_execute.rb

#now(method, *args, &block) ⇒ Object



17
18
19
20
21
# File 'lib/psd/lazy_execute.rb', line 17

def now(method, *args, &block)
  PSD.logger.debug "Executing #{@obj.class.name}##{method} now"
  @obj.send(method, *args, &block)
  return self
end