Skip to content

Instantly share code, notes, and snippets.

@hynkle
Created August 11, 2011 15:05
Show Gist options
  • Save hynkle/1139897 to your computer and use it in GitHub Desktop.
Save hynkle/1139897 to your computer and use it in GitHub Desktop.
class Foo
def self.define_bar
def self.bar
puts "bar was apparently defined!"
end
end
end
Foo.bar # raises NoMethodError
Foo.define_bar
Foo.bar # prints "bar was apparently defined!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment