Skip to content

Instantly share code, notes, and snippets.

@rickhull
Created July 30, 2010 01:54
Show Gist options
  • Save rickhull/499707 to your computer and use it in GitHub Desktop.
Save rickhull/499707 to your computer and use it in GitHub Desktop.
class Foo
def self.bar
'Foo.bar'
end
class << self
alias_method :rab, :bar
end
def baz
'Foo#baz'
end
alias_method :zab, :baz
end
puts Foo.rab
puts Foo.new.zab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment