Tim Riley
Tim Riley
Update `SliceConfigurable` as well as `SliceConfiguredAction` and `SliceConfiguredView` to ensure action and view config is applied only once per slice, and that custom config set in a superclass isn't overwritten...
See the [Hanami 2.0 Trello board](https://trello.com/b/lFifnBti/hanami-20) for 2.0 development plans.
As agreed, this is our recommendation to resolve the issue raised in #422. Most of our code examples depend on a `::Types` module having been already created, so to make...
There's no information on this page about how exactly the `option` DSL works. We could clarify things with a sentence saying it is provided by dry-initializer and linking to its...
This would better support the use case in https://github.com/dry-rb/dry-system/pull/162 (see https://github.com/dry-rb/dry-system/pull/162#discussion_r613203242 for specific notes), in which all the settings from one class are "imported" into another for use there too....
This is something @solnic mentioned a while ago as a change he'd like to see for 1.0.0. Opening this so we can have the discussion as whether this is something...
Right now, the only way is to do this: ```ruby config.component_dirs.add "some_dir" do dir.auto_register = proc do |component| relative_path = component.file_path.relative_path_from(root).to_s !relative_path.start_with?("config#{File::PATH_SEPARATOR}") end end ``` Which feels a bit too...