Methods
S
U
Instance Public methods
set_bar()
# File actionpack/test/controller/flash_test.rb, line 262
def set_bar
  flash[:bar] = "for great justice"
  head :ok
end
set_flash()
# File actionpack/test/controller/flash_test.rb, line 248
def set_flash
  flash["that"] = "hello"
  head :ok
end
set_flash_now()
# File actionpack/test/controller/flash_test.rb, line 253
def set_flash_now
  flash.now["that"] = "hello"
  head :ok
end
use_flash()
# File actionpack/test/controller/flash_test.rb, line 258
def use_flash
  render :inline => "flash: #{flash["that"]}"
end