0.03
No commit activity in last 3 years
No release in over 3 years
Ruby Critic is a tool that listens to modifications in Ruby classes, modules and methods and reports any new code smells it finds.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 5.3
~> 1.0
>= 0

Runtime

~> 2.6
>= 2.9.3
 Project Readme

Guard::RubyCritic

Gem Version Code Climate

RubyCritic Icon

Guard::RubyCritic is a tool that uses RubyCritic to detect and report smells in Ruby code in real-time.

Installation

Add this line to your application's Gemfile:

gem "guard-rubycritic"

And then execute:

$ bundle

Next, generate a default Guardfile in your root directory:

$ guard init rubycritic

Usage

Change your Guardfile to your heart's content and start it with the following command:

$ guard

Each time you save a file, that file will be analysed and its report will be available at YOUR_PROJECT_ROOT/tmp/rubycritic/current_file.html.

Improving Guard::RubyCritic

See Guard::RubyCritic's contributing guidelines about how to proceed.