# File lib/more/facets/hashbuilder.rb, line 61 def build!( blockstr=nil, &block ) raise "both string and block given" if blockstr and block_given? if blockstr instance_eval blockstr else instance_eval &block end self # or to_h ? end