class Praxis::Blueprint::FieldsetParser

Simple helper class that can parse the ‘attribute :foobar` dsl into an equivalent structure hash. Example: do

 attribute :one
 attribute :complex do
   attribute :sub1
 end
end

is parsed as: { one: true, complex: { sub1: true} }