From: nahi Date: 2012-03-18T18:42:36+09:00 Subject: [ruby-core:43429] [ruby-trunk - Feature #4095] C1 Coverage Issue #4095 has been updated by nahi. Priority changed from Normal to Low Contribution are welcomed... ---------------------------------------- Feature #4095: C1 Coverage https://bugs.ruby-lang.org/issues/4095#change-24748 Author: DanielHeath Status: Feedback Priority: Low Assignee: Category: lib Target version: 2.0.0 =begin The built-in coverage in Ruby 1.9 is great, but it only offers line-by-line coverage. It would be better if we could determine which parts of each line have been run e.g: # File 'coverage_example.rb' true ? 'always run' : 'never run' Coverage would return: {'coverage_example.rb' => [ { 0..28 => 1 }, { 0..21 => 1, 22..33 => 0 } ] } =end -- http://bugs.ruby-lang.org/