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