Created
January 28, 2011 09:48
-
-
Save mostlyfine/800053 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 hello | |
| puts "hello" | |
| end | |
| end | |
| class Test | |
| end | |
| test = Test.new | |
| test.class.send :include, Hoge | |
| test.hello | |
| puts test.class.include?(Hoge) | |
| Test.extend Hoge | |
| Test.hello | |
| Test.send :include, Hoge | |
| t = Test.new | |
| t.hello | |
| puts Test.include?(Hoge) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment