Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save maiha/70672 to your computer and use it in GitHub Desktop.
Save maiha/70672 to your computer and use it in GitHub Desktop.
def compile
eval("def foo() end")
end
compile
p respond_to?(:foo)
true # 1.8
false # 1.9 (private method)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment