Skip to content

Instantly share code, notes, and snippets.

@rb2k
Created April 5, 2011 11:15
Show Gist options
  • Save rb2k/903432 to your computer and use it in GitHub Desktop.
Save rb2k/903432 to your computer and use it in GitHub Desktop.
class Foo
def self.doit
puts "nike"
end
def bar
Foo.doit()
end
def bar2
self.doit()
end
end
Foo.doit() #works
Foo.new().bar #works
Foo.new().bar2() #breaks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment