Sha256: 7cbb331636f00276c6e7be097b6ddce90c44decfb311030d1a2bb68af1666e47

Contents?: true

Size: 661 Bytes

Versions: 1

Compression:

Stored size: 661 Bytes

Contents

module Leap
  class Committee
    attr_reader :name, :quorums
    
    def initialize(name)
      @name = name
      @quorums = []
    end
    
    def report(characteristics, considerations)
      quorums.grab do |quorum|
        next unless quorum.satisfied_by? characteristics
        if conclusion = quorum.acknowledge(characteristics, considerations.dup)
          ::Leap::Report.new quorum => conclusion
        end
      end
    end
    
    include ::Blockenspiel::DSL
    def quorum(name, options = {}, &blk)
      @quorums << ::Leap::Quorum.new(name, options, blk)
    end
    
    def default(&blk)
      quorum 'default', {}, &blk
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
leap-0.3.0 lib/leap/committee.rb