Skip to content

Instantly share code, notes, and snippets.

@iwada
Created September 5, 2011 20:28
Show Gist options
  • Save iwada/1195848 to your computer and use it in GitHub Desktop.
Save iwada/1195848 to your computer and use it in GitHub Desktop.
Passing auguments to before_*
class XController < ApplicationController
before_filter :except => [:show, :..] do |c| c.check({".." => "administrator"})
end
# ... various methods ...
end
def check(x)
......
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment