# File lib/facets/core/kernel/with_accessor.rb, line 43 def with_accessor(h) (class << self ; self ; end).send( :attr_accessor, *h.keys ) h.each { |k,v| instance_variable_set("@#{k}", v) } end