Last active
November 28, 2016 21:56
-
-
Save apneadiving/fcd55313d1a73425bb8868c491c85db0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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