Dave Myron

Results 60 comments of Dave Myron

Thanks for looking, @pirj and @JonRowe. Here's a recreation of the failure: ``` describe "Recreating bug" do class MyClass def my_method(value); value end end before(:each) do allow_any_instance_of(MyClass).to receive(:my_method) { |instance,...

Here's the first call to invoke_incrementing_actual_calls_by with the correct `args`: ![image](https://user-images.githubusercontent.com/10958/110006196-363ce600-7cce-11eb-991a-bc6c1a629587.png) Here's the second call to that method with the now-incorrect `args`: ![image](https://user-images.githubusercontent.com/10958/110006253-45239880-7cce-11eb-8a3e-42f08c6b94a1.png)

I believe the issue is related to `lib/rspec/mocks/message_expectation.rb:556` which is `args.unshift(orig_object) if yield_receiver_to_implementation_block?`. The flow then goes to line 574 where `parent_stub` is invoked which eventually hits that unshift again.

This still exists with cells-rails 0.0.7 and cells 4.1.6. If a cell has a syntax error then reloading seems to work until the file is successfully parsed at which point...

It's the view (`concepts/thing/views/show.haml`). If there's an error it will reload until the error is gone and from then on it requires a server restart to reload the view. I...

I'm running into this myself in my initial exposure to Reform… I have an API where the data structure doesn't map at all to the table / model structure (and...

…long delay… So is there supposed to be an object between the form object and my persistent object? (Remember: this is my first exposure to Reform.) To solve my problem...

> The populator is **not** called for a `nil` fragment... that is indeed unexpected behavior..... – @apotonick Has there been any insight on this in the last few years? I...

I'm getting similar issues with a local image. Why is Orbstack trying to lookup registry-1.docker.io when my local `docker images` shows the image that I'm trying to use with a...

BTW, I was able to get around the issue by prepending `DOCKER_BUILDKIT=0` to the second image's build command. So it's apparently a problem with Buildkit. Is there anything Orbstack can...