Created
March 15, 2015 06:00
-
-
Save zakky-dev/7acf2590dffb92e07ef5 to your computer and use it in GitHub Desktop.
これができるの地味に嬉しい。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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