Skip to content

Instantly share code, notes, and snippets.

@webgago
Forked from kalabiyau/gist:2823017
Created May 29, 2012 06:53
Show Gist options
  • Save webgago/2823022 to your computer and use it in GitHub Desktop.
Save webgago/2823022 to your computer and use it in GitHub Desktop.
def ApplicationController
def blah
@meme.drop!
end
end
class FooController < ApplicationController
def gogo
@meme = Meme.new
blah
end
end
class BarController
def gogo
@meme = Meme.new
blah
end
def blah
@meme.drop!
end
end
FooController == BarController
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment