seamusabshere/data_miner

Replace :synthesize syntax

Opened this issue · 1 comments

Instead of:

store :field, :synthesize => Proc.new { |row| do_some_stuff }

Allow:

store :field do |row|
  do_some_stuff
  and_how
end

i really like this idea