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