Methods
method_missing new
Public Class methods
new(*hash)
# File lib/more/facets/opencollection.rb, line 30
  def initialize(*hash)
    @opens = hash.map do |h|
      OpenObject.new(h)
    end
  end
Public Instance methods
method_missing(sym)
# File lib/more/facets/opencollection.rb, line 36
  def method_missing(sym)
    @opens.map do |o|
      o.send(sym)
    end
  end