Created
August 21, 2013 23:42
-
-
Save MSNexploder/6301589 to your computer and use it in GitHub Desktop.
Just some quick thoughts...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FoosController < ApplicationController | |
before_filter :foobar | |
class Bar | |
before_filter :find_bar | |
def new | |
... | |
end | |
def create | |
... | |
end | |
private | |
def find_bar | |
... | |
end | |
end | |
def show | |
... | |
end | |
private | |
def foobar | |
... | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pro
Cons
Questions