Skip to content

Instantly share code, notes, and snippets.

@PerezIgnacio
Created February 3, 2020 14:28
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/6467f852d165bc569fb7e746c19184a3 to your computer and use it in GitHub Desktop.
Save PerezIgnacio/6467f852d165bc569fb7e746c19184a3 to your computer and use it in GitHub Desktop.
UserAddedToCrm example
class UserAddedToCrm
delegate_missing_to :@user
def initialize(user)
@user = 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