0.01
There's a lot of open issues
A long-lived project that still receives updates
ezCater custom cops and shared configuration
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

ezcater_rubocop CircleCI

ezCater custom cops and shared RuboCop configuration.

RuboCop is a static code analyzer that can enforce style conventions as well as identify common problems.

Installation

Add this line to your application's Gemfile:

group :development do
  gem "ezcater_rubocop", require: false
end

Or to your gem's gemspec file:

spec.add_development_dependency "ezcater_rubocop"

And then execute:

$ bundle install

Or install it yourself as:

$ gem install ezcater_rubocop

Configuration

To use one of the shared RuboCop configurations from this gem, you must define a .rubocop.yml file in your project:

inherit_gem:
  ezcater_rubocop: conf/rubocop_rails.yml

Further customization of RuboCop for your local project may be added to this file.

Available Configurations

  • rubocop: Assumes RSpec is used and requires rubocop-rspec. This configuration should be used for gems.
  • rubocop_gem: For use in Ruby gem projects, this inherits from the rubocop configuration.
  • rubocop_rails: For Rails projects, this inherits from the rubocop configuration.

Documentation

Visit https://gemdocs.org/gems/ezcater_rubocop to view the documentation for our custom cops in the latest release.

Usage

Run rubocop for an entire project:

$ bundle exec rubocop

See the rubocop command-line for additional options including auto-generating configuration for existing offenses and auto-correction.

Circle Script

This gem contains a script, circle_rubocop.rb, that can be used to run RuboCop in CI.

The behavior of the script is that all files are checked on main or if the rubocop configuration has changed. On non-main branches, only the files added or changed on the branch are checked.

For non-main branches, [rubocop skip] can be included in the commit message to skip running rubocop.

Versioning

This gem is using Semantic Versioning. All version bumps should increment using MAJOR.MINOR.PATCH based on changes.

When adding a new cop, please enable the cop and release a new major version. This allows us to constantly roll out improvements without clients having their suite break unknowingly. When a breaking change is released, users can opt to use --regenerate-todo to update their TODO file. Do not add cops with enabled: false unless you want that cop to always be disabled.

Custom Cops

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install.

Releasing a New Version

Releases are automated via release-please. When commits following the Conventional Commits format are merged to main, release-please opens (or updates) a release PR that bumps version.rb and updates CHANGELOG.md automatically. Merging that PR triggers the publish-to-rubygems job, which tags the release and pushes the .gem file to rubygems.org.

You do not need to manually edit version.rb or CHANGELOG.md. Use the correct commit prefix to drive the version bump:

  • fix: → patch bump
  • feat: → minor bump
  • feat!: or BREAKING CHANGE: in the body → major bump

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ezcater/ezcater_rubocop.

Adding New Cops

New cops can be generated via the new_cop rake task which generates the cop, the spec, updates imports, and adds configuration. Example:

rake 'new_cop[Ezcater/foo_bar]'

Follow the instructions after the task executes and update code as necessary for consistency.

In addition, you need to:

  1. Add the cop to the "Custom Cops" section of this README
  2. Use a conventional commit prefix (feat: for a non-breaking new cop, feat!: for a breaking one) so release-please bumps the version and updates the CHANGELOG automatically.

Version Bumps & Changelog Entries

Version bumps and CHANGELOG entries are managed automatically by release-please based on Conventional Commits. Use the correct prefix on your PR title (squash-and-merge is required):

Commit prefix Version bump Example
fix: Patch fix: correct typo in cop message
feat: Minor feat: add StyleDig cop
feat!: or BREAKING CHANGE: in body Major feat!: enable StyleDig by default
chore:, docs:, ci: None chore: update CI config

chore: commits do not trigger a release. This keeps the CHANGELOG focused on changes that affect users of the gem.

License

The gem is available as open source under the terms of the MIT License.