Merge branch 'gem'
[fuzed.git] / helloworld / app / controllers / application.rb
blobf1c4ac8fbd053f90781131ae74912f16bf18971f
1 # Filters added to this controller apply to all controllers in the application.
2 # Likewise, all the methods added will be available for all controllers.
4 class ApplicationController < ActionController::Base
5   # Pick a unique cookie name to distinguish our session data from others'
6   session :session_key => '_helloworld_session_id'
7   
8   # session :off
9 end