Method: Object#load_from

Defined in:
lib/rmtools/core/object.rb

#load_from(obj) ⇒ Object



42
43
44
45
# File 'lib/rmtools/core/object.rb', line 42

def load_from(obj)
  readable_variables.each {|v| instance_variable_set("@#{v}", obj.instance_variable_get("@#{v}"))}
  self
end