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
Hi! 👋 I ran into a problem where I wanted to run tapioca gem activesupport but I was getting errors from Sorbet because ActiveSupport::TestCase extends from Minitest which is not a dependency in my project. I didn't want to add it so I worked around it by making a hack with the following:
That doesn't appear to be an option though! Am I misunderstanding how tapioca dsl is intended to be used? Please me know if I missed something in the docs! Thanks a bunch! 😅
The text was updated successfully, but these errors were encountered:
Can you share the exact error you're seeing? Minitest is a dependency of ActiveSupport so there's another underlying issue. You should get both minitest and activesupport RBIs when you run bin/tapioca gem (note that it has no arguments, running tapioca gem activesupport is not enough).
And yes, skip_constant is a dsl option not gem. gem command doesn't need constant skipping unlike dsl
Hi! 👋 I ran into a problem where I wanted to run
tapioca gem activesupport
but I was getting errors from Sorbet becauseActiveSupport::TestCase
extends fromMinitest
which is not a dependency in my project. I didn't want to add it so I worked around it by making a hack with the following:This feels icky and I'd have preferred to have something like:
That doesn't appear to be an option though! Am I misunderstanding how
tapioca dsl
is intended to be used? Please me know if I missed something in the docs! Thanks a bunch! 😅The text was updated successfully, but these errors were encountered: