1 रिपॉजिटरी
Declaring required dependencies in a protocol that each RIB must satisfy, then implementing them in a component class.
Distinct from Dependency Scoping: Distinct from Dependency Scoping: focuses on declaring dependencies via protocols rather than restricting visibility to modules.
Explore 1 awesome GitHub repository matching devops & infrastructure · Protocol-Based Dependency Declarations. Refine with filters or upvote what's useful.
RIBs is a mobile architecture framework that structures applications around isolated, lifecycle-managed units of business logic called RIBs. Each RIB separates routing, business logic, and construction into distinct classes through the Router-Interactor-Builder pattern, with hierarchical dependency injection scoping dependencies per node and static analysis enforcing architectural rules at build time. The framework enforces automatic disposal of Rx subscriptions scoped to interactor lifecycles, blocking compilation when subscriptions lack proper disposal to prevent memory leaks. It supports v
Ships a protocol-based dependency declaration system where each RIB defines its required dependencies in a component class.