This Exception is raised when you try to stream with something that is not capable of streaming.
[Source]
# File lib/coderay.rb, line 297 297: def initialize obj 298: @obj = obj 299: end
# File lib/coderay.rb, line 301 301: def to_s 302: '%s is not Streamable!' % @obj.class 303: end
[Validate]