Class: ActionDispatch::Response::RackBody

Inherits:
Object
  • Object
show all
Defined in:
lib/action_dispatch/http/response.rb

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ RackBody

Returns a new instance of RackBody.



475
476
477
# File 'lib/action_dispatch/http/response.rb', line 475

def initialize(response)
  @response = response
end

Instance Method Details

#bodyObject



489
490
491
# File 'lib/action_dispatch/http/response.rb', line 489

def body
  @response.body
end

#closeObject



483
484
485
486
487
# File 'lib/action_dispatch/http/response.rb', line 483

def close
  # Rack "close" maps to Response#abort, and *not* Response#close
  # (which is used when the controller's finished writing)
  @response.abort
end

#each(*args, &block) ⇒ Object



479
480
481
# File 'lib/action_dispatch/http/response.rb', line 479

def each(*args, &block)
  @response.each(*args, &block)
end

#respond_to?(method, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


493
494
495
496
497
498
499
# File 'lib/action_dispatch/http/response.rb', line 493

def respond_to?(method, include_private = false)
  if method.to_sym == :to_path
    @response.stream.respond_to?(method)
  else
    super
  end
end

#to_aryObject



505
506
507
# File 'lib/action_dispatch/http/response.rb', line 505

def to_ary
  nil
end

#to_pathObject



501
502
503
# File 'lib/action_dispatch/http/response.rb', line 501

def to_path
  @response.stream.to_path
end