Joel Drapper

Results 173 comments of Joel Drapper

> Is there a use-case where you would have different bit values than the index of the flags is provided in an array? The reason to specify the bit value...

> Not looked into the implementation code at all, but could Flags be a storage implementation detail for enums? I don’t think so. It’s solving quite a distinct problem.

Good point. I hadn’t thought about this but it’s a big advantage. I love that I can use Rubocop and Ruby LSP too.

We could probably exclude `vendor` in our glob. I don’t know if this will work, but worth a shot: ``` "./{,!(vendor)/**}/*.test.rb" ```

I think this is now handled by moving all quickdraw tests out of `lib`.

@stevegeek can we implement this in a way that doesn't depend on the PG gem? Can we just use Ruby arrays?

Also, can you think of a way to make this prettier? ```ruby attribute :status, Literal::Rails::EnumType.new(Status) ``` Ideally, we could do something like this: ```ruby attribute :status, Status ``` That would...

I guess it depends on the language server, but if we take RubyLSP / Solargraph as an example, they are pretty slow to start and they index lazily. The project...

I would imagine a project-wide tree-sitter symbol index would be very useful for AI too. AI tools could use multi-step prompts where the AI can drive, searching for symbols and...

It’s not a deal breaker for me but it would be incredibly useful. The tree-sitter outlines are so much more reliable than a lot of language servers.