dry-rb / dry-container

A simple, configurable object container implemented in Ruby
https://dry-rb.org/gems/dry-container
MIT License
335 stars 41 forks source link

Support for decorating static values #66

Closed flash-gordon closed 5 years ago

flash-gordon commented 5 years ago

This also adds support for block decorators:

container.decorate('operation') do |op|
  Wrapper.new(op)
end