Module: BuildLogParser

Defined in:
lib/build_log_parser.rb,
lib/build_log_parser/parser.rb,
lib/build_log_parser/version.rb,
lib/build_log_parser/matchers/rspec_matcher.rb,
lib/build_log_parser/matchers/phpunit_matcher.rb,
lib/build_log_parser/matchers/coverage_matcher.rb,
lib/build_log_parser/matchers/duration_matcher.rb,
lib/build_log_parser/matchers/test_unit_matcher.rb

Defined Under Namespace

Modules: CoverageMatcher, DurationMatcher, PHPUnitMatcher, RspecMatcher, TestUnitMatcher Classes: Parser

Constant Summary collapse

VERSION =
"0.1.3"

Class Method Summary collapse

Class Method Details

.coverage(str) ⇒ Object



10
11
12
# File 'lib/build_log_parser.rb', line 10

def self.coverage(str)
  Parser.new(str).coverage
end

.duration(str) ⇒ Object



14
15
16
# File 'lib/build_log_parser.rb', line 14

def self.duration(str)
  Parser.new(str).duration
end

.tests(str) ⇒ Object



6
7
8
# File 'lib/build_log_parser.rb', line 6

def self.tests(str)
  Parser.new(str).tests
end