Sha256: 50606080a46a574e52d462678d8cb1c386e9cd0da44d7bc49fa99d88ed131b0a
Contents?: true
Size: 769 Bytes
Versions: 1
Compression:
Stored size: 769 Bytes
Contents
require 'action_logic/action_includes' module ActionLogic module ActionUseCase def self.included(klass) klass.extend ActionLogic::ActionIncludes klass.extend ClassMethods end module ClassMethods def execute(params = {}) around(params) do |execution_context| raise ActionLogic::InvalidUseCaseError.new("ActionUseCase requires at least one ActionTask") if execution_context.tasks.empty? execution_context.call execution_context.tasks.reduce(execution_context.context) do |context, task| execution_context.context = task.execute(context) execution_context.context end end end def __private__type :use_case end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
action_logic-0.2.4 | lib/action_logic/action_use_case.rb |