Skip to content

Instantly share code, notes, and snippets.

@ku1ik
Created January 30, 2010 19:48
Show Gist options
  • Save ku1ik/290693 to your computer and use it in GitHub Desktop.
Save ku1ik/290693 to your computer and use it in GitHub Desktop.
module A
class B
def run
connect do
puts C
end
end
def connect
yield
end
end
class C
end
end
A::B.new.run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment