Skip to content

Instantly share code, notes, and snippets.

@bitops
Created January 15, 2015 22:14
Show Gist options
  • Select an option

  • Save bitops/a3e780c8f05225c08ae5 to your computer and use it in GitHub Desktop.

Select an option

Save bitops/a3e780c8f05225c08ae5 to your computer and use it in GitHub Desktop.
module Foo
def make_a_thing
self.class.new
end
end
class Bar
include Foo
def baz
42
end
end
b = Bar.new
c = b.make_a_thing
c.baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment