Sha256: 946ea7c38e9b7bd17b2e1ef4aa57520d42fd2ae695aa922b5ffd179c6c2f9515
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true module ConvenientService module Support module DependencyContainer module Import include Support::Concern class_methods do ## # @param full_name [String, Symbol] # @param from [Module] # @param scope [:instance, :class] # @param prepend [Boolean] # @return [ConvenientService::Support::DependencyContainer::Entities::Method] # def import(full_name, from:, scope: Constants::DEFAULT_SCOPE, prepend: Constants::DEFAULT_PREPEND) Commands::AssertValidScope.call(scope: scope) Commands::AssertValidContainer.call(container: from) Commands::AssertValidMethod.call(full_name: full_name, scope: scope, container: from) method = from.exported_methods.find_by(full_name: full_name, scope: scope) Commands::ImportMethod.call(importing_module: self, exported_method: method, prepend: prepend) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
convenient_service-0.12.0 | lib/convenient_service/support/dependency_container/import.rb |