0.07
Low commit activity in last 3 years
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
 Dependencies

Development

~> 3.7
~> 0.16
~> 1.3, >= 1.3.12
~> 13.0.6
~> 0.6.0
~> 5.47

Runtime

~> 1.0
 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.

require: rubocop-sequel

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

Command line

rubocop --require rubocop-sequel

Rake task

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