Sha256: a21a74d556fa8c6d6282a6a45c3fb7fe9b23b77a3ef5302c678b1c3d14e715b3
Contents?: true
Size: 396 Bytes
Versions: 2
Compression:
Stored size: 396 Bytes
Contents
#### Simple IO This example shows a simple ```IO```. ```show.rb```: ```ruby require 'debug_helper' io = IO.new(IO.sysopen(__FILE__, 'r'), 'r') DebugHelper.show(io, 'My simple io') ``` The output shows details of the ```IO```. ```show.yaml```: ```yaml --- IO (message='My simple io'): IO#autoclose?: true IO#binmode?: false IO#closed?: false IO#tty?: false ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
debug_helper-2.1.0 | markdown/readme/classes/io/simple/show.md |
debug_helper-2.0.0 | markdown/readme/classes/io/simple/show.md |