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