gather

A gem that provides modules to make working with properties a bit easier.

For example:

class SumThing
  include Gather
  property :thing, :spla, :gumf, :troob
end

s = SumThing.new.gather :spla => 'five', :thing => 'sigma' do
  troob %w{one two three four}
  gumf 15 % 4
end

Or

s = SumThing.new.gather :spla => 'five', :thing => 'sigma' do |s|
  s.troob = %w{one two three four}
  s.gumf = 15 % 4
end