Sha256: 35f0192474b464d4e0e777ffa5edd374f3b94cdede272b228b139b9185025389
Contents?: true
Size: 480 Bytes
Versions: 39
Compression:
Stored size: 480 Bytes
Contents
You need to tell RuboCop to load the Minitest extension. There are three ways to do this: ### RuboCop configuration file Put this into your `.rubocop.yml`. ```yaml require: rubocop-minitest ``` Now you can run `rubocop` and it will automatically load the RuboCop Minitest cops together with the standard cops. ### Command line ```sh rubocop --require rubocop-minitest ``` ### Rake task ```ruby RuboCop::RakeTask.new do |task| task.requires << 'rubocop-minitest' end ```
Version data entries
39 entries across 39 versions & 1 rubygems