Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save aleandros/51c94131d8d7d4c86302f5d5974db4b6 to your computer and use it in GitHub Desktop.

Select an option

Save aleandros/51c94131d8d7d4c86302f5d5974db4b6 to your computer and use it in GitHub Desktop.
obj = Object.new
# We create a method ONLY for obj
class << obj
def to_proc
proc { puts 'This looks like fun' }
end
end
not_much &obj
#=> It prints
# This looks like fun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment