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.



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

def initialize(response)
  @response = response
end

Instance Method Details

#bodyObject



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

def body
  @response.body
end

#closeObject



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

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



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

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

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

Returns:

  • (Boolean)


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

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

#to_aryObject



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

def to_ary
  nil
end

#to_pathObject



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

def to_path
  @response.stream.to_path
end