Class: Dry::Container::Resolver
- Inherits:
-
Object
- Object
- Dry::Container::Resolver
- Defined in:
- lib/dry/container/resolver.rb
Overview
Default resolver for resolving items from container
Instance Method Summary collapse
-
#call(container, key) ⇒ Mixed
Resolve an item from the container.
-
#each(container, &block) ⇒ Object
Calls block once for each key in container, passing the key and the registered item parameters.
-
#each_key(container, &block) ⇒ Object
Calls block once for each key in container, passing the key as a parameter.
-
#key?(container, key) ⇒ Bool
Check whether an items is registered under the given key.
-
#keys(container) ⇒ Array
An array of registered names for the container.
Instance Method Details
#call(container, key) ⇒ Mixed
Resolve an item from the container
20 21 22 23 24 25 26 |
# File 'lib/dry/container/resolver.rb', line 20 def call(container, key) item = container.fetch(key.to_s) do raise Error, "Nothing registered with the key #{key.inspect}" end item.call end |
#each(container, &block) ⇒ Object
In discussions with other developers, it was felt that being able to iterate over not just the registered keys, but to see what was registered would be very helpful. This is a step toward doing that.
Calls block once for each key in container, passing the key and the registered item parameters.
If no block is given, an enumerator is returned instead.
72 73 74 |
# File 'lib/dry/container/resolver.rb', line 72 def each(container, &block) container.map { |key, value| [key, value.call] }.each(&block) end |
#each_key(container, &block) ⇒ Object
Calls block once for each key in container, passing the key as a parameter.
If no block is given, an enumerator is returned instead.
58 59 60 |
# File 'lib/dry/container/resolver.rb', line 58 def each_key(container, &block) container.each_key(&block) end |
#key?(container, key) ⇒ Bool
Check whether an items is registered under the given key
38 39 40 |
# File 'lib/dry/container/resolver.rb', line 38 def key?(container, key) container.key?(key.to_s) end |
#keys(container) ⇒ Array
An array of registered names for the container
47 48 49 |
# File 'lib/dry/container/resolver.rb', line 47 def keys(container) container.keys end |