You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have dry/system/provider_sources file which eager-loads all files from lib/dry/system/provider_sources/* as new providers under :dry_system key.
This introduces a problem from the usage point of view because you need to remember to require that file. It would be better to just make it lazy-loadable instead, so that if you try to use a dry_system provider, it just knows how to lazy load it.
Currently we have
dry/system/provider_sources
file which eager-loads all files fromlib/dry/system/provider_sources/*
as new providers under:dry_system
key.This introduces a problem from the usage point of view because you need to remember to require that file. It would be better to just make it lazy-loadable instead, so that if you try to use a
dry_system
provider, it just knows how to lazy load it.For context: dry-rb/dry-rails#55 (comment)
The text was updated successfully, but these errors were encountered: