Methods
C
N
P
R
Class Public methods
controller_name()
# File actionpack/test/controller/capture_test.rb, line 5
def self.controller_name; "test"; end
controller_path()
# File actionpack/test/controller/capture_test.rb, line 6
def self.controller_path; "test"; end
Instance Public methods
content_for()
# File actionpack/test/controller/capture_test.rb, line 8
def content_for
  @title = nil
  render :layout => "talk_from_action"
end
content_for_concatenated()
# File actionpack/test/controller/capture_test.rb, line 18
def content_for_concatenated
  @title = nil
  render :layout => "talk_from_action"
end
content_for_with_parameter()
# File actionpack/test/controller/capture_test.rb, line 13
def content_for_with_parameter
  @title = nil
  render :layout => "talk_from_action"
end
non_erb_block_content_for()
# File actionpack/test/controller/capture_test.rb, line 23
def non_erb_block_content_for
  @title = nil
  render :layout => "talk_from_action"
end
proper_block_detection()
# File actionpack/test/controller/capture_test.rb, line 28
def proper_block_detection
  @todo = "some todo"
end
rescue_action(e)
# File actionpack/test/controller/capture_test.rb, line 32
def rescue_action(e) raise end