Class: Object

Inherits:
BasicObject
Defined in:
lib/background_lite/core_ext/object.rb

Instance Method Summary collapse

Instance Method Details

#clone_for_backgroundObject

Clones the object to for transmission to the background process. The default implementation is dupping the object.



4
5
6
# File 'lib/background_lite/core_ext/object.rb', line 4

def clone_for_background
  dup
end