Skip to content

Instantly share code, notes, and snippets.

@cronin101
Created September 2, 2013 23:22
Show Gist options
  • Select an option

  • Save cronin101/6418126 to your computer and use it in GitHub Desktop.

Select an option

Save cronin101/6418126 to your computer and use it in GitHub Desktop.
Trapdoor method
main ⭔ define_method :secret_message, ->{ ->{ define_method :secret_message, ->{ "Too late" } }.() && "I hope you remember this" }
#=> #<Proc:0x007fb74ad90f68@(pry):21 (lambda)>
main ⭔ secret_message
#=> "I hope you remember this"
main ⭔ secret_message
#=> "Too late"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment