* ext/coverage/coverage.c (Init_coverage): Change list format and

describe Coverage.result output.  Patch by Sylvain Daubert.
  [Ruby 1.9 - Bug #5428]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33449 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2011-10-10 21:06:39 +00:00
Родитель 55b3a88bb5
Коммит ccec5b49ca
2 изменённых файлов: 13 добавлений и 5 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Tue Oct 11 06:06:29 2011 Eric Hodel <drbrain@segment7.net>
* ext/coverage/coverage.c (Init_coverage): Change list format and
describe Coverage.result output. Patch by Sylvain Daubert.
[Ruby 1.9 - Bug #5428]
Tue Oct 11 05:53:23 2011 Eric Hodel <drbrain@segment7.net>
* object.c (Init_Object): Add reference to BasicObject, brief

Просмотреть файл

@ -71,11 +71,13 @@ rb_coverage_result(VALUE klass)
*
* = Usage
*
* (1) require "coverage.so"
* (2) do Coverage.start
* (3) require or load Ruby source file
* (4) Coverage.result will return a hash that contains filename as key and
* coverage array as value.
* 1. require "coverage.so"
* 2. do Coverage.start
* 3. require or load Ruby source file
* 4. Coverage.result will return a hash that contains filename as key and
* coverage array as value. A coverage array gives, for each line, the
* number of line execution by the interpreter. A +nil+ value means
* coverage is disabled for this line (lines like +else+ and +end+).
*
* = Example
*