Sha256: f8174b44546f2490bcd720adff66d6b317f79e2b98ec2c907192c9ed8ef32b0e
Contents?: true
Size: 522 Bytes
Versions: 24
Compression:
Stored size: 522 Bytes
Contents
= Usage 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`. [source,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 [source,sh] ---- rubocop --require rubocop-minitest ---- == Rake task [source,ruby] ---- RuboCop::RakeTask.new do |task| task.requires << 'rubocop-minitest' end ----
Version data entries
24 entries across 24 versions & 1 rubygems