Skip to content

Instantly share code, notes, and snippets.

@hagiyat
Created July 22, 2015 04:33
Show Gist options
  • Save hagiyat/9dcfac48d0b1e0744d5b to your computer and use it in GitHub Desktop.
Save hagiyat/9dcfac48d0b1e0744d5b to your computer and use it in GitHub Desktop.
class Hoge
private
def fuga
'hoge'
end
end
module Piyo
def baz
fuga()
end
end
Hoge.prepend Piyo
Hoge.new.baz # hoge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment