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
It would be very helpful to use Union type for the module-self.
In my project, I have a Commentable concern module used across multiple ActiveRecord models. This Commentable module uses methods commonly defined in the modules where it is included. For example, it references methods like #comments and attributes such as #user_id.
Currently, in RBS, only classes or interfaces can be specified for module-self. As a workaround, I have defined an interface as follows:
I agree with the cumbersomeness, but the duck-typing nature of Ruby means that these interfaces can also make exact requirements as well as concrete types.
It would be very helpful to use Union type for the module-self.
In my project, I have a
Commentable
concern module used across multiple ActiveRecord models. This Commentable module uses methods commonly defined in the modules where it is included. For example, it references methods like#comments
and attributes such as#user_id
.Currently, in RBS, only classes or interfaces can be specified for module-self. As a workaround, I have defined an interface as follows:
This interface allows for proper type checking, but as the number of methods grows, the interface definition becomes more cumbersome.
If it were possible to specify a Union type for module-self, it would allow for type definitions of modules without the need to define an interface.
However, generating an interface dynamically through Union types might negatively impact runtime performance. Do you think this idea is practical?
The text was updated successfully, but these errors were encountered: