class CaptureController

Public Class Methods

controller_name() click to toggle source
# File actionview/test/actionpack/controller/capture_test.rb, line 9
def self.controller_name; "test"; end
controller_path() click to toggle source
# File actionview/test/actionpack/controller/capture_test.rb, line 10
def self.controller_path; "test"; end

Public Instance Methods

content_for() click to toggle source
# File actionview/test/actionpack/controller/capture_test.rb, line 12
def content_for
  @title = nil
  render layout: "talk_from_action"
end
content_for_concatenated() click to toggle source
# File actionview/test/actionpack/controller/capture_test.rb, line 22
def content_for_concatenated
  @title = nil
  render layout: "talk_from_action"
end
content_for_with_parameter() click to toggle source
# File actionview/test/actionpack/controller/capture_test.rb, line 17
def content_for_with_parameter
  @title = nil
  render layout: "talk_from_action"
end
non_erb_block_content_for() click to toggle source
# File actionview/test/actionpack/controller/capture_test.rb, line 27
def non_erb_block_content_for
  @title = nil
  render layout: "talk_from_action"
end
proper_block_detection() click to toggle source
# File actionview/test/actionpack/controller/capture_test.rb, line 32
def proper_block_detection
  @todo = "some todo"
end