Class: ActionDispatch::Response::RackBody

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

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ RackBody

Returns a new instance of RackBody.



493
494
495
# File 'actionpack/lib/action_dispatch/http/response.rb', line 493

def initialize(response)
  @response = response
end

Instance Method Details

#bodyObject



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

def body
  @response.body
end

#closeObject



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

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



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

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

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

Returns:

  • (Boolean)


511
512
513
514
515
516
517
# File 'actionpack/lib/action_dispatch/http/response.rb', line 511

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

#to_aryObject



523
524
525
# File 'actionpack/lib/action_dispatch/http/response.rb', line 523

def to_ary
  nil
end

#to_pathObject



519
520
521
# File 'actionpack/lib/action_dispatch/http/response.rb', line 519

def to_path
  @response.stream.to_path
end