Skip to content

Instantly share code, notes, and snippets.

@jtrupiano
Created February 10, 2010 16:41
Show Gist options
  • Select an option

  • Save jtrupiano/300521 to your computer and use it in GitHub Desktop.

Select an option

Save jtrupiano/300521 to your computer and use it in GitHub Desktop.
class A
def self.blah
puts "I'm in A"
end
end
class B < A
def self.blah
puts "I'm in B"
super
end
end
irb(main):002:0> B.blah
I'm in B
I'm in A
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment