Skip to content

Instantly share code, notes, and snippets.

@mostlyfine
Created January 28, 2011 09:48
Show Gist options
  • Select an option

  • Save mostlyfine/800053 to your computer and use it in GitHub Desktop.

Select an option

Save mostlyfine/800053 to your computer and use it in GitHub Desktop.
含んでんの?広げてんの?どうなの?実際
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