Method: RuboCop::Cop::Base#ready

Defined in:
lib/rubocop/cop/base.rb

#readyObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Called between investigations

[View source]

306
307
308
309
310
# File 'lib/rubocop/cop/base.rb', line 306

def ready
  return self if self.class.support_multiple_source?

  self.class.new(@config, @options)
end