each()
public
@!visibility private Enumerates each action in
the log @yield [Action]
# File lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb, line 77
def each
return enum_for unless block_given?
action = @first_action
loop do
break unless action
yield action
action = action.next
end
self
end