Andrew Kozin

Results 12 comments of Andrew Kozin

@mbj thank you. Now I'm stuck to other projects, maybe in September I could make a try

@mbj For example, mutant breaks on my [latest tiny gem](https://github.com/nepalez/hexx-services) It doesn't recognize usage of [Patches](https://github.com/nepalez/hexx-services/blob/master/lib/hexx-services/patches.rb) in [this method](https://github.com/nepalez/hexx-services/blob/master/lib/hexx-services/dependencies_dsl.rb), complaining that patched `Object#kind_of_service_class?` is not defined, while it is.

Well, I think you're right. Actually this PR and your reaction motivated me to exclude refinements from my code. I've found functional approach (`transproc` etc.) far more clean.

> Its an issue, did I miss a PR? No, you didn't. The devil beguiled me

Hey @solnic It looks like your review is necessary even to merge Svyatoslav's PR into my branch (I'd like to recheck and fix rubocop issues before opening a PR to...

@kfischer-okarin Hi You are right, the gem does not check the number of params, but just ignores the unknown ones. This was made by design, because at the moment I...

Well, because I never use minitest, I don't feel enough expertise to support it. But you're welcome with a PR :smile:

@tskogberg Thank you! this is exactly what I looked for today)

I suspect you're using ruby 3+, so the problem is not in the keys, but in the difference between `new(opts)` and `new(**opts)`. The last syntax was the only supported :man_shrugging:...