Namespace
Methods
A
D
F
L
N
R
S
W
Instance Public methods
append_info_to_payload(payload)
# File actionpack/test/controller/log_subscriber_test.rb, line 77
def append_info_to_payload(payload)
  super
  payload[:test_key] = "test_value"
  @last_payload = payload
end
data_sender()
# File actionpack/test/controller/log_subscriber_test.rb, line 33
def data_sender
  send_data "cool data", :filename => "file.txt"
end
file_sender()
# File actionpack/test/controller/log_subscriber_test.rb, line 37
def file_sender
  send_file File.expand_path("company.rb", FIXTURE_LOAD_PATH)
end
filterable_redirector()
# File actionpack/test/controller/log_subscriber_test.rb, line 29
def filterable_redirector
  redirect_to "http://secret.foo.bar/"
end
last_payload()
# File actionpack/test/controller/log_subscriber_test.rb, line 83
def last_payload
  @last_payload
end
never_executed()
# File actionpack/test/controller/log_subscriber_test.rb, line 18
def never_executed
end
redirector()
# File actionpack/test/controller/log_subscriber_test.rb, line 25
def redirector
  redirect_to "http://foo.bar/"
end
show()
# File actionpack/test/controller/log_subscriber_test.rb, line 21
def show
  head :ok
end
with_action_not_found()
# File actionpack/test/controller/log_subscriber_test.rb, line 73
def with_action_not_found
  raise AbstractController::ActionNotFound
end
with_exception()
# File actionpack/test/controller/log_subscriber_test.rb, line 65
def with_exception
  raise Exception
end
with_fragment_cache()
# File actionpack/test/controller/log_subscriber_test.rb, line 41
def with_fragment_cache
  render :inline => "<%= cache('foo'){ 'bar' } %>"
end
with_fragment_cache_and_percent_in_key()
# File actionpack/test/controller/log_subscriber_test.rb, line 45
def with_fragment_cache_and_percent_in_key
  render :inline => "<%= cache('foo%bar'){ 'Contains % sign in key' } %>"
end
with_fragment_cache_if_with_false_condition()
# File actionpack/test/controller/log_subscriber_test.rb, line 53
def with_fragment_cache_if_with_false_condition
  render :inline => "<%= cache_if(false, 'foo') { 'bar' } %>"
end
with_fragment_cache_if_with_true_condition()
# File actionpack/test/controller/log_subscriber_test.rb, line 49
def with_fragment_cache_if_with_true_condition
  render :inline => "<%= cache_if(true, 'foo') { 'bar' } %>"
end
with_fragment_cache_unless_with_false_condition()
# File actionpack/test/controller/log_subscriber_test.rb, line 57
def with_fragment_cache_unless_with_false_condition
  render :inline => "<%= cache_unless(false, 'foo') { 'bar' } %>"
end
with_fragment_cache_unless_with_true_condition()
# File actionpack/test/controller/log_subscriber_test.rb, line 61
def with_fragment_cache_unless_with_true_condition
  render :inline => "<%= cache_unless(true, 'foo') { 'bar' } %>"
end
with_rescued_exception()
# File actionpack/test/controller/log_subscriber_test.rb, line 69
def with_rescued_exception
  raise SpecialException
end