class TED::ObjectHash

Public Instance Methods

each() { |object| ... } click to toggle source
Calls superclass method
# File lib/ted/object_hash.rb, line 3
def each
  super do |key, object|
    next unless key.is_a?(Integer)
    next if object.description.empty?
    yield object
  end
end