Sha256: 4e5bbd4a578341d781426f6b3bddd015b7a8a0d29c9ec07333ccd512df208e0a
Contents?: true
Size: 902 Bytes
Versions: 3
Compression:
Stored size: 902 Bytes
Contents
require 'action_logic/action_core' require 'action_logic/action_validation' module ActionLogic module ActionUseCase include ActionLogic::ActionValidation include ActionLogic::ActionCore def self.included(klass) klass.extend ClassMethods klass.extend ActionLogic::ActionCore::ClassMethods klass.extend ActionLogic::ActionValidation::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 end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
action_logic-0.2.1 | lib/action_logic/action_use_case.rb |
action_logic-0.2.0 | lib/action_logic/action_use_case.rb |
action_logic-0.1.0 | lib/action_logic/action_use_case.rb |