Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > stringioライブラリ > StringIOクラス > bytes

instance method StringIO#bytes

each_byte {|ch| ... } -> self[permalink][rdoc]
bytes {|ch| ... } -> self
each_byte -> Enumerator
bytes -> Enumerator

自身から 1 バイトずつ読み込み、整数 ch に変換し、それを引数として与えられたブロックを実行します。

[EXCEPTION] IOError:
自身が読み取り不可なら発生します。
require "stringio"
a = StringIO.new("hoge")
a.each_byte{|ch| p ch }

#=>
104
111
103
101