Skip to content

Instantly share code, notes, and snippets.

@appsol
Last active August 29, 2015 14:01
Show Gist options
  • Save appsol/f7555786d620ca274c63 to your computer and use it in GitHub Desktop.
Save appsol/f7555786d620ca274c63 to your computer and use it in GitHub Desktop.
Saasbook Project 3.2
#!/usr/bin/env ruby
# Project 3.2
# Print an objects class and it's ancestors up to BasicObject
def class_print(o)
c = o.class
until c.nil? do
puts c
c = c.superclass
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment