RuboCop rules for Hix on Rails projects that use RSpec. Includes:
Easily extensible, created by Hix on Rails.
Add this line to your application's Gemfile:
group :test, :development do
gem 'rubocop-hixonrails'
endDo notice, that you do not need to include other rubocop-* gems in your
Gemfile, this single one will suffice.
For a Ruby library, add this to your gemspec:
spec.add_development_dependency 'rubocop-hixonrails'And then run:
$ bundle installCreate a .rubocop.yml with the following directives:
inherit_gem:
rubocop-hixonrails:
- default.ymlNow, run:
$ bundle exec rubocopAll configuration goes to default.yml file.
rubocopdefaults & Ruby styleguiderubocop-rspecdefaults & RSpec styleguiderubocop-performancedefaults
The gem comes with an executable:
enable_pending_copsTo enable pending cops in the repository, simply run:
ruby bin/enable_pending_copsThis will:
- Override all cops marked as
Enabled: pendingin the latest core or extensions' versions installed. - Automatically generate the .rubocop_todo.yml file, without generating
Max: ndirectives.
This way you can safely update the code, one by one.
In order to publish new version of the gem follow the steps:
git hf release start X.Y.Z- bump up version in
RubocopHixonrails::VERSION git commit -am 'UPD version to X.Y.Z'git hf release finish X.Y.Zbundle update rubocop-hixonrailsin projects that use it
The gem push script is set up on CircleCI upon git hf release finish, as per
Publishing RubyGems using Circle CI 2.0 article.