Kaan Ozkan

Results 89 comments of Kaan Ozkan

@lox +1. Is this option on the roadmap? It has been a year since you commented on this.

You can explicitly require that file in a `sorbet/tapioca/require.rb` file https://github.com/Shopify/tapioca#manual-gem-requires. Hope that helps.

You should pass the "full path" so prepend `turbo-rails`: `require 'turbo-rails/app/helpers/turbo/streams/action_helper'`

I don't have a lot of experience with loading files on the `app/` path. I'd expect `require 'helpers/turbo/streams/action_helper'` to work but locally it's still failing. Feel free to use the...

We can either `prepend` or look for a module with a hardcoded name that we can offload the work to. We currently use something similar in ActiveRecordColumns [compiler](https://github.com/Shopify/tapioca/blob/41283e46097d8de0a17dc4897f43c328240a28d6/lib/tapioca/dsl/helpers/active_record_column_type_helper.rb#L73). I don't...

@bmulholland 0.4.25 was a bugfix release and doesn't include the fix above https://github.com/Shopify/tapioca/releases/tag/v0.4.25. Feel free to point tapioca to `main` to temporarily test the new DSL generator.

I am not able to reproduce this locally using Ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) on an m1 machine. Since it's a Ruby crash it may also be architecture specific. Can...

@froydnj Given the lazy evaluation of `type_alias` your last repro was hard to get around with our existing solutions in mind. As a result we ended up going back to...

Is `bundle exec srb tc --print=missing-constants --quiet` is halting? If it is, it'll be useful to try it with earlier `sorbet-static` versions from the previous couple months. In the meantime...

@julienXX thanks for the extra information. As suspected this has to be a sorbet issue and not a tapioca one. I'm curious if your coworkers also run into the issue...