Skip to content

Instantly share code, notes, and snippets.

@yob
Created August 6, 2009 03:05
Show Gist options
  • Save yob/163097 to your computer and use it in GitHub Desktop.
Save yob/163097 to your computer and use it in GitHub Desktop.
class Blah
class << self
def pub
meth
end
def meth
puts "hello world"
end
private :meth
end
end
Blah.pub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment