Skip to content

Instantly share code, notes, and snippets.

@PerezIgnacio
Last active February 3, 2020 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PerezIgnacio/99fa01fd38d910e95dcd0d36ca67ecb9 to your computer and use it in GitHub Desktop.
Save PerezIgnacio/99fa01fd38d910e95dcd0d36ca67ecb9 to your computer and use it in GitHub Desktop.
UserAddedToCrm Decorator example with SimpleDelegator
class UserAddedToCrm < SimpleDelegator
def initialize(user)
@user = user
super(@user)
end
def save
@user.save && send_user_to_crm
end
private
def send_user_to_crm
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment