lib/request_log_analyzer/source.rb in wvanbergen-request-log-analyzer-1.2.9 vs lib/request_log_analyzer/source.rb in wvanbergen-request-log-analyzer-1.3.0

- old
+ new

@@ -31,14 +31,19 @@ attr_reader :current_request # The total number of parsed lines attr_reader :parsed_lines + # The number of skipped lines because of warnings + attr_reader :skipped_lines + # The total number of parsed requests. attr_reader :parsed_requests - # The number of skipped lines because of warnings - attr_reader :skipped_lines + # The total number of skipped requests because of filters. + attr_reader :skipped_requests + + # Initializer, which will register the file format and save any options given as a hash. # <tt>format</tt>:: The file format instance # <tt>options</tt>:: A hash of options that can be used by a specific Source implementation def initialize(format, options = {}) \ No newline at end of file