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.



487
488
489
# File 'lib/action_dispatch/http/response.rb', line 487

def initialize(response)
  @response = response
end

Instance Method Details

#bodyObject



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

def body
  @response.body
end

#closeObject



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

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



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

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

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

Returns:

  • (Boolean)


505
506
507
508
509
510
511
# File 'lib/action_dispatch/http/response.rb', line 505

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

#to_aryObject



517
518
519
# File 'lib/action_dispatch/http/response.rb', line 517

def to_ary
  nil
end

#to_pathObject



513
514
515
# File 'lib/action_dispatch/http/response.rb', line 513

def to_path
  @response.stream.to_path
end