class ApacheCrunch::Each

DSL routine that executes the block for every log entry

Public Instance Methods

execute(&blk) click to toggle source
# File lib/procedure_dsl.rb, line 47
def execute(&blk)
    while @_current_entry = @_log_parser.next_entry
        instance_eval(&blk)
    end
end