class Roda::RodaPlugins::SinatraHelpers::DelayedBody
def each
If the body is a String, yield it, otherwise yield each string
def each v = value if v.is_a?(String) yield v else v.each{|s| yield s} end end
def each v = value if v.is_a?(String) yield v else v.each{|s| yield s} end end