Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Created January 3, 2016 09:42
Show Gist options
  • Save osyo-manga/2cc3eed595c2fe9ef8a8 to your computer and use it in GitHub Desktop.
Save osyo-manga/2cc3eed595c2fe9ef8a8 to your computer and use it in GitHub Desktop.
fuck
module ExImpl
def homu
p "homu"
end
end
module Ex
refine Module do
include ExImpl
# alias_method を使って再定義
ExImpl.instance_methods(false).each do |name|
alias_method :homu, :homu
end
def mami
homu
end
end
end
class X
using Ex
homu
mami
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment