Peter Aarestad

Results 5 comments of Peter Aarestad

In our code, it is a public method (obviously not _public_ public, but y'know). I will take a look at this tomorrow (US Central) and see if I can submit...

I am having trouble understanding how to implement this fix, sorry. I don't fully understand the parsing abstractions being done, and I have no experience here. :( I will try...

Thank you for this explanation! I apologize for not responding sooner - I have had a lot going on. I would be happy to take a look at doing a...

Hey! I tried implementing both of these like this in `Rspec::UnspecifiedException`: ```ruby def find_expect_to(node) return if node.receiver.nil? node.each_ancestor.find do |ancestor| break if ancestor.block_type? next unless ancestor.send_type? expect_to?(ancestor) end end ```...

Huh - I could have sworn I tried to do them each on their own. Looks ok - I am going to create a PR now. Thank you all for...