Sha256: 0edfb85d6870c750c3fdb7bb1224172b4a18560ebfe846ea4740e5c09c50313b

Contents?: true

Size: 441 Bytes

Versions: 1

Compression:

Stored size: 441 Bytes

Contents

== 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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gather-0.0.3 README