Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created February 2, 2012 05:30
Show Gist options
  • Save ukstudio/1721705 to your computer and use it in GitHub Desktop.
Save ukstudio/1721705 to your computer and use it in GitHub Desktop.
alias
class Foo
def self.show
'foo'
end
class << self
def show_with_bar
"#{show_without_bar} bar"
end
alias :show_without_bar :show
alias :show :show_with_bar
end
end
p Foo.show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment