Ryo Nakamura
Ryo Nakamura
## Is your feature request related to a problem? Please describe. I'm using Ruby 2.7 in my Rails application and I know there is `Style/HashExcept` cop which is useful where...
As explained in its safety section, the autocorrection of this cop will significantly change the behavior of the code if the receiver is `nil`. I tried to use this cop's...
This is a feature request. ```diff diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index a52b2780619..5fb492fbe4e 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -1,469 +1,18 @@ # This configuration was generated by -# `rubocop --auto-gen-config...
It would be nice if there are links from https://rubygems.org/gems/wkhtmltopdf-binary to its source code and changelog. Of course, this information is useful not only for rubygems.org, but also for various...
## About I'm now working on adding an API to RuboCop to support templates such as ERB, Haml and Slim. - https://github.com/rubocop/rubocop/pull/10839 I'm curious to hear your thoughts on adding...
## About I'm now working on adding an API to RuboCop to support templates such as ERB, Haml and Slim. - https://github.com/rubocop/rubocop/pull/10839 I'm curious to hear your thoughts on adding...
The internal implementation of `mount_uploader` changed from `after_save` to `after_commit` in carrierwave 2.0, which means that `mount_uploader` must be called after `process_in_background`. https://github.com/carrierwaveuploader/carrierwave/commit/665f2254a2c70385b67942b13a4710dc6826c42d
If we want to specify traits in implicit associations, we have to use `:factory` option. This is not only a naming problem, but also redundant in implicit style, because when...
This change resolves some of the following Issue: - https://github.com/rubocop/rubocop-rspec/issues/1799 It still does not handle quotes well for dstr node, but at least it will handle them well for str...
I noticed that it autocorrects as follows, which causes syntax error: ```ruby # before it 'should return foo\'s bar' do end # after it 'returns foo's bar' do end ```...