RuboCop rules for mfind projects that use Ruby on Rails. Includes:
If you do not create Ruby on Rails project, use gem mfind-rubocop-rspec instead.
Add this line to your application's Gemfile:
group :test, :development do
gem 'mfind-rubocop-rspec-rails'
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 'mfind-rubocop-rspec-rails'And then run:
$ bundle installCreate a .rubocop.yml with the following directives:
inherit_gem:
mfind-rubocop-rspec-rails:
- default.ymlNow, run:
$ bundle exec rubocopAll configuration goes to default.yml file.
mfind-rubocop-rspecdefaultsrubocop-railsdefaults & Rails styleguiderubocopdefaults & Ruby styleguiderubocop-rspecdefaults & RSpec styleguiderubocop-performancedefaults
In order to publish new version of the gem follow the steps:
git hf release start X.Y.Z- bump up version in
MfindRuboCopRSpec::VERSION git commit -am 'UPD version to X.Y.Z'git hf release finish X.Y.Zbundle update mfind-rubocop-rspec-railsin 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.