Sha256: f47e2fee15334e24a4bb1a4a6aea1b063fde2b9941d6d2bc30f0e36fef26f464
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true module ConvenientService module Service module Plugins module CanHaveResultStep class Middleware < Core::MethodChainMiddleware ## # @param args [Array] # @param kwargs [Hash] # @param block [Proc, nil] # @return [ConvenientService::Service::Plugins::HasResult::Entities::Result] # # @internal # NOTE: It is okish to assign to next method arguments here, # since splat for `args` and double splat for `kwargs` # always create new arrays and hashes respectively. # https://github.com/ruby/spec/blob/c7ed8478a031d0df346d222495f4b4bbb298523b/language/keyword_arguments_spec.rb#L100 # def next(*args, **kwargs, &block) return chain.next(*args, **kwargs, &block) if args.first != :result kwargs[:in] = Utils::Array.wrap(kwargs[:in]) + [{method_name: raw(:result)}, {organizer: :itself}] args[0] = Services::RunOwnMethodInOrganizer chain.next(*args, **kwargs, &block) end private ## # @param object [Object] Can be any type. # @return [ConvenientService::Support::RawValue] # def raw(object) Support::RawValue.wrap(object) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
convenient_service-0.11.0 | lib/convenient_service/service/plugins/can_have_result_step/middleware.rb |