2 3 4 5 6 7
# File 'lib/mharris_ext/from_hash.rb', line 2 def from_hash(ops) ops.each do |k,v| send("#{k}=",v) end self end
8 9 10
# File 'lib/mharris_ext/from_hash.rb', line 8 def initialize(ops={}) from_hash(ops) end