Skip to content

Instantly share code, notes, and snippets.

@Kutomore
Last active April 11, 2019 14:35
Show Gist options
  • Save Kutomore/49e9bd25570c60ca6d3db81ab18d8218 to your computer and use it in GitHub Desktop.
Save Kutomore/49e9bd25570c60ca6d3db81ab18d8218 to your computer and use it in GitHub Desktop.
require 'delegate'
class User
def born_on
Date.new(1989, 09, 10)
end
end
class UserDecorator < SimpleDelegator
def birth_year
born_on.year
end
end
decorated_user = UserDecorator.new(User.new)
decorated_user.birth_year #=> 1989
decorated_user.__getobj__ #=> #<User: ...>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment