Skip to content

Instantly share code, notes, and snippets.

@rusilko
Last active March 25, 2016 19:39
Show Gist options
  • Save rusilko/53f948d8a5d1c3cad85b to your computer and use it in GitHub Desktop.
Save rusilko/53f948d8a5d1c3cad85b to your computer and use it in GitHub Desktop.
module Defaults
module Result1
def self.call(input_a:, input_b:, bank_param_1:, **kwargs)
(input_a + input_b) * bank_param_1
end
end
module Result2
def self.call(result_1:, input_c:, **kwargs)
result_1 / input_c
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment