flowchart TD
subgraph Collaborator
subgraph User
subgraph Examples
examples
end
subgraph Configs
configs
end
subgraph Resources
direction LR
common
service
result
step
internals
command
common -.- service
service -.- result
result -.- step
step -.- internals
internals -.- command
end
end
subgraph Core
core
end
subgraph Test-Toolkit [Test Toolkit]
rspec
end
subgraph Primitives
direction LR
dependencies
error
logger
utils
support
dependencies -.- error
error -.- logger
logger -.- utils
utils -.- support
end
end
Examples ---> Configs
Examples ---> Test-Toolkit
Configs ---> Resources
Configs ---> Test-Toolkit
Configs ---> Core
Resources ---> Primitives
Resources ---> Test-Toolkit
Resources ---> Core
Test-Toolkit <-->|TODO: Refactor to unidirectional| Primitives
Core ---> Primitives
Core ---> Test-Toolkit
style Collaborator fill:#f9f
style User fill:#bbf