Class OpenCollection
In: lib/more/facets/opencollection.rb
Parent: Object

Methods

Public Class methods

[Source]

# File lib/more/facets/opencollection.rb, line 30
  def initialize(*hash)
    @opens = hash.map do |h|
      OpenObject.new(h)
    end
  end

Public Instance methods

[Source]

# File lib/more/facets/opencollection.rb, line 36
  def method_missing(sym)
    @opens.map do |o|
      o.send(sym)
    end
  end

[Validate]