reverse_each()
public
@!visibility private Enumerates each
action in the log in reverse order @yield [Action]
Show source
def reverse_each
return enum_for(:reverse_each) unless block_given?
action = @current_action
loop do
break unless action
yield action
action = action.previous
end
self
end