Skip to content

Instantly share code, notes, and snippets.

@taisyo7333
Created January 25, 2016 13:58
Show Gist options
  • Save taisyo7333/6c0a80036916da6117bf to your computer and use it in GitHub Desktop.
Save taisyo7333/6c0a80036916da6117bf to your computer and use it in GitHub Desktop.
Ruby Class methods : alias , undef
# encoding: SJIS
class Hoge
def huga1; end
def huga2; end
alias :huga3 :huga1
undef :huga2
end
p Hoge.instance_methods(false)
>ruby Code4-10.rb
ruby Code4-10.rb
[:huga1, :huga3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment