Skip to content

Instantly share code, notes, and snippets.

@apneadiving
Last active November 28, 2016 21:56
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 apneadiving/fcd55313d1a73425bb8868c491c85db0 to your computer and use it in GitHub Desktop.
Save apneadiving/fcd55313d1a73425bb8868c491c85db0 to your computer and use it in GitHub Desktop.
class CreditUser
include Waterfall
def initialize(user:, cents:)
@user, @cents = user, cents
end
def call
# credit logic goes here and dams on error
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment