Leif Gensert

Results 44 issues of Leif Gensert

Show that deserializing from nested union types doesn't work.

Just analyzed the 64bit binary for linux and saw this: ``` file nats_exporter_linux_amd64 ==> nats_exporter_linux_amd64: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, not stripped ```...

I have been recently adopting sorbet into my projects and it greatly helped me with refactoring. Unfortunately the typechecking errors are not extending to specs due to the DSL nature...

We are using [custom ID types](https://api.rubyonrails.org/classes/ActiveRecord/Attributes/ClassMethods.html#method-i-attribute) for our primary keys: ```ruby class MyModel < ApplicationRecord attribute :id, MyModelId.new end MyModel.find(MyModelId.new("123")) ``` With 0.13.0 this results in type errors when regenerating...