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