0.08
There's a lot of open issues
No release in over a year
Code style checking for Sequel
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

>= 1.72.1, < 2
 Project Readme

CI status

RuboCop Sequel

Code style checking for Sequel.

Installation

Using the rubocop-sequel gem

gem install rubocop-sequel

or using bundler by adding in your Gemfile

gem 'rubocop-sequel'

Usage

RuboCop configuration file

Add to your .rubocop.yml.

plugins: rubocop-sequel

rubocop will now automatically load RuboCop Sequel cops alongside with the standard cops.

Note

The plugin system is supported in RuboCop 1.72+. In earlier versions, use require instead of plugins.

Command line

rubocop --plugin rubocop-sequel

Rake task

RuboCop::RakeTask.new do |task|
  task.plugins << 'rubocop-sequel'
end