Skip to content

Instantly share code, notes, and snippets.

@littlemove
Created February 1, 2009 18:34
Show Gist options
  • Save littlemove/55944 to your computer and use it in GitHub Desktop.
Save littlemove/55944 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
helper :all
before_filter :set_global
before_filter :wadus, :except => [:index]
def wadus
@foo = "Oh my gosh!"
end
def set_global
@foo = "I'm inmutable"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment