Skip to content

Instantly share code, notes, and snippets.

@ngpestelos
Created September 29, 2013 04:16
Show Gist options
  • Save ngpestelos/6749295 to your computer and use it in GitHub Desktop.
Save ngpestelos/6749295 to your computer and use it in GitHub Desktop.
instance_eval
# see Metaprogramming Ruby, p. 108
s1, s2 = "abc", "def"
s1.instance_eval do
def swoosh!; reverse; end
end
s1.swoosh! # cba
s2.respond_to?(:swoosh!) # false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment