From: "yhara (Yutaka HARA)" Date: 2012-10-25T17:36:37+09:00 Subject: [ruby-core:48239] [ruby-trunk - Feature #4095] C1 Coverage Issue #4095 has been updated by yhara (Yutaka HARA). Target version changed from 2.0.0 to next minor ---------------------------------------- Feature #4095: C1 Coverage https://bugs.ruby-lang.org/issues/4095#change-31512 Author: DanielHeath (Daniel Heath) Status: Feedback Priority: Low Assignee: Category: lib Target version: next minor =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/