Skip to content

Instantly share code, notes, and snippets.

@weapp
Created July 21, 2014 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weapp/618d67d4d1325b96fdc8 to your computer and use it in GitHub Desktop.
Save weapp/618d67d4d1325b96fdc8 to your computer and use it in GitHub Desktop.
class Foo
class << self
def cls_method
"cls_method"
end
end
def ins_method
self.class.cls_method
end
end
puts Foo.new.ins_method
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment