Herwin

Results 65 issues of Herwin

Observation from #2744: ```ruby def get_me_a_return Proc.new { return 42 } end begin get_me_a_return.call rescue StandardError p $! end ``` The rescues the exception with MRI, but it falls through...

bug

After the recent fixes in #2496, where we were using the wrong method to run a certain spec, I noticed that the upstream mspec repo contained specs for mspec. The...

This might be(come) a part of #2699 Imagine this Ruby program: ```ruby def foo(*a) a.shift a end def bar(...) = foo(...) + foo(...) p bar(1,2,3) ``` This has two forwarding...

Similar to `NATFIXME`, I would like to have a `NATUNRELIABLE` block wrapper for the specs. This could be used in places where we accept the failures, but don't require it....

This is the sibling of #111 where the received Mesage-Authenticator attribute is required and validated. See #107 as well for a description why this should be done. The code is...