aprescott

Results 51 comments of aprescott

I haven't fully thought this through, but perhaps a solution here could also simplify `importmap.rb` with respect to transitive dependencies? Currently, `pin`ning will download other packages that the target package...

I'm experiencing this same problem with a serializer I'm trying to define. I'm not too familiar with the jsonapi-rb internals, but I have a couple of ideas for tackling this....

Related to this problem: `link` has the same issue: ```ruby link :related do # unable to reference methods defined at the serializer level end ``` I'm not sure there's a...

Echoing the request for explicitly disabling span collection. It'd be great to have a supported way of avoiding trace submission issues with many thousands of spans. (Even having a way...

@marcotc that's helpful, thanks! 100,000 does seem quite high. That said, we did appear to hit some sort of limit with large spans in certain cases. Traces with low span...

Since 2.2.4 includes #48 as the only documented change, I assume something there broke.

Meant to include other version information, apologies! 😅 ``` $ bundle exec rspec --version RSpec 3.13 - rspec-core 3.13.0 - rspec-expectations 3.13.1 - rspec-mocks 3.13.1 - rspec-rails 6.1.3 - rspec-support...

> RSpec apply `seed` only when option is used explicitly. This option is enabled for `rspec` runs through the standard `spec_helper.rb` config boilerplate: ```ruby config.order = :random Kernel.srand config.seed ```...

> Could `turbo_tests` read the RSpec config, and use that to determine whether to act as if a `--seed` has been given? To expand on that a bit: basically if...

> The actual issue/confusion with TurboTests is that it doesn't print the `Randomized with seed 36736` line from output of the _each of RSpec processes_ in `TurboTests::Runner#handle_message`. For what it's...