af83/chouette-core

View on GitHub
app/lib/chouette/factory/definition.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Chouette
  class Factory
    module Definition
      def define(&block)
        root.define(&block)
      end

      def root
        @root ||= Model.new(:root)
      end
    end
  end
end