method

to_ary

to_ary()
public

No documentation available.

# File actionpack/lib/action_dispatch/http/response.rb, line 132
      def to_ary
        if @str_body
          [body]
        else
          @buf = @buf.to_ary
        end
      end