Method: Munge::Core::Source#each
- Defined in:
- lib/munge/core/source.rb
#each ⇒ Object
20 21 22 23 24 25 26 |
# File 'lib/munge/core/source.rb', line 20 def each return enum_for(:each) unless block_given? @items.each_value do |item| yield item end end |