Skip to content

Instantly share code, notes, and snippets.

@skeller1
Created September 8, 2011 13:16
Show Gist options
  • Save skeller1/1203364 to your computer and use it in GitHub Desktop.
Save skeller1/1203364 to your computer and use it in GitHub Desktop.
introspection
class MyClass
def my_method1
p "my method1"
end
def my_method2
p "my method2"
end
end
object = MyClass.new
p object.class.name
# => "MyClass"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment