Skip to content

Instantly share code, notes, and snippets.

@smtlaissezfaire
Created May 3, 2018 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smtlaissezfaire/190429fc13310f5255c8daab5958ac98 to your computer and use it in GitHub Desktop.
Save smtlaissezfaire/190429fc13310f5255c8daab5958ac98 to your computer and use it in GitHub Desktop.
/Users/smtlaissezfaire/src/git/onpoint/ui-on-rails (master)$ irb
clas>> class A
>> def foo
>> 1
>> end
>> alias_method :bar, :foo
>> end
=> A
>> class B < A
>> def foo
>> 2
>> end
>> end
=> :foo
>> B.new.bar
=> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment