Ryan Rosenblum

Results 7 comments of Ryan Rosenblum

This may or may not be related. I too am an ALE user, and I've run into some issues with its RuboCop integration recently. My issue has to do with...

This work fell on my back burner. I have not made much of any progress on it. It is something that I would like to complete, however I would be...

I think this is a duplicate of https://github.com/rubocop/rubocop/issues/8161. That issue was closed with a reference to a potential fix. I haven't looked into this in a while so I'm not...

As of now, there isn't a way to add custom deprecated methods. The original intention behind the cop was to flag deprecated class methods from Ruby itself. I can see...

I think we have handled some code similar to this in the Performance cops. Specifically, I think [`Performance/StringReplacement`](https://github.com/rubocop-hq/rubocop-performance/blob/master/docs/modules/ROOT/pages/cops_performance.adoc#performancestringreplacement) does some basic checks to see if we can swap regex for...

We've known for a while that the performance measurements for some of the cops can change across Ruby versions. I don't think we document the performance benefits based on Ruby...

It's been a while since I looked into `require` vs `require_relative`. There used to be an issue with mixing `require` and `require_relative` for paths that lived under a symlink. The...