Skip to content

Instantly share code, notes, and snippets.

@zakky-dev
Created March 15, 2015 06:00
Show Gist options
  • Save zakky-dev/7acf2590dffb92e07ef5 to your computer and use it in GitHub Desktop.
Save zakky-dev/7acf2590dffb92e07ef5 to your computer and use it in GitHub Desktop.
これができるの地味に嬉しい。
module Hoge
def func
puts "Hoge module"
end
module_function :func
end
module Fuga
def func
puts "Fuga module"
end
module_function :func
end
def putfunc mod
mod.func
end
putfunc Hoge
putfunc Fuga
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment