= Usage You need to tell RuboCop to load the RuboCop RSpec Extra extension. There are some ways to do this: == RuboCop configuration file Put this into your `.rubocop.yml`: ---- require: rubocop-rspec-extra ---- or, if you are using several extensions: ---- require: - rubocop-rspec - rubocop-rspec-extra ---- Now you can run `rubocop` and it will automatically load the RuboCop RSpec Extra cops together with the standard cops. [source,bash] ---- $ rubocop --require rubocop-rspec-extra ---- == Rake task [source,ruby] ---- RuboCop::RakeTask.new do |task| task.requires << 'rubocop-rspec-extra' end ----