Role models are important.
-- Officer Alex J. Murphy / RoboCop
RuboCop is a Ruby code style checker based on the Ruby Style Guide.
RuboCop's installation is pretty standard:
$ gem install rubocopRunning rubocop with no arguments will check all Ruby source files
in the current folder:
$ rubocopAlternatively you can pass rubocop a list of files and folders to check:
$ rubocop app spec lib/something.rbFor more details check the available command-line options:
$ rubocop -h| Command flag | Description |
|---|---|
-v/--version |
Displays the current version and exits |
-V/--verbose-version |
Displays the current version plus the version of Parser and Ruby |
-d/--debug |
Displays some extra debug output |
-c/--config |
Run with specified config file |
-f/--format |
Choose a formatter |
-o/--out |
Write output to a file instead of STDOUT |
-r/--require |
Require Ruby file |
-R/--rails |
Run extra Rails cops |
-a/--auto-correct |
Auto-correct certain offences. |
-s/--silent |
Suppress the final summary |
--only |
Run only the specified cop |
The behavior of RuboCop can be controlled via the .rubocop.yml configuration file. The file can be placed either in your home folder or in some project folder.
RuboCop will start looking for the configuration file in the directory where the inspected file is and continue its way up to the root folder.
The file has the following format:
inherit_from: ../.rubocop.yml
Encoding:
Enabled: true
LineLength:
Enabled: true
Max: 79It allows to enable/disable certain cops (checks) and to alter their behavior if they accept any parameters.
The optional inherit_from directive is used to include configuration
from one or more files. This makes it possible to have the common
project settings in the .rubocop.yml file at the project root, and
then only the deviations from those rules in the subdirectories. The
included files can be given with absolute paths or paths relative to
the file where they are referenced. The settings after an
inherit_from directive override any settings in the included
file(s). When multiple files are included, the first file in the list
has the lowest precedence and the last one has the highest. The format
for multiple inclusion is:
inherit_from:
- ../.rubocop.yml
- ../conf/.rubocop.ymlThe file config/default.yml under the RuboCop home directory
contains the default settings that all configurations inherit
from. Project and personal .rubocop.yml files need only make
settings that are different from the default ones. If there is no
.rubocop.yml file in the project or home directory,
config/default.yml will be used.
One or more individual cops can be disabled locally in a section of a file by adding a comment such as
# rubocop:disable LineLength, StringLiterals
[...]
# rubocop:enable LineLength, StringLiteralsYou can also disable all cops with
# rubocop:disable all
[...]
# rubocop:enable allOne or more cops can be disabled on a single line with an end-of-line comment.
for x in (0..19) # rubocop:disable AvoidForRuboCop checks all files recursively within the directory it is run
on. However, it does not recognize some files as Ruby(only files
ending with .rb or extensionless files with a #!.*ruby declaration
are automatically detected) files, and if you'd like it to check these
you'll need to manually pass them in. Files and directories can
also be ignored through .rubocop.yml.
Here is an example that might be used for a Rails project:
AllCops:
Includes:
- Rakefile
- config.ru
Excludes:
- db/**
- config/**
- script/**
# other configuration
# ...Note: Files and directories are specified relative to the .rubocop.yml file.
You can get RuboCop's inspection result in JSON format by passing --format json option in command line.
The JSON structure is like the following example:
{
"metadata": {
"rubocop_version": "0.9.0",
"ruby_engine": "ruby",
"ruby_version": "2.0.0",
"ruby_patchlevel": "195",
"ruby_platform": "x86_64-darwin12.3.0"
},
"files": [{
"path": "lib/foo.rb",
"offences": []
}, {
"path": "lib/bar.rb",
"offences": [{
"severity": "convention",
"message": "Line is too long. [81/79]",
"cop_name": "LineLength",
"location": {
"line": 546,
"column": 79
}
}, {
"severity": "warning",
"message": "Unreachable code detected.",
"cop_name": "UnreachableCode",
"location": {
"line": 15,
"column": 8
}
}
]
}
],
"summary": {
"offence_count": 2,
"target_file_count": 2,
"inspected_file_count": 2
}
}You can customize RuboCop's output format with custom formatter.
To implement a custom formatter, you need to subclass
Rubocop::Formatter::BaseFormatter and override some methods,
or implement all formatter API methods by duck typing.
Please see the documents below for more formatter API details.
You can tell RuboCop to use your custom formatter with a combination of
--format and --require option.
For example, when you have defined MyCustomFormatter in
./path/to/my_custom_formatter.rb, you would type this command:
$ rubocop --require ./path/to/my_custom_formatter --format MyCustomFormatterNote: The path passed to --require is directly passed to Kernel.require.
If your custom formatter file is not in $LOAD_PATH,
you need to specify the path as relative path prefixed with ./ explicitly,
or absolute path.
RuboCop supported only MRI 1.9 & MRI 2.0 prior to version 0.8. After RuboCop 0.8, JRuby and Rubinius in 1.9 modes are also supported.
rubocop.el is a simple Emacs interface for RuboCop. It allows you to run RuboCop inside Emacs and quickly jump between problems in your code.
flycheck > 0.9 also supports RuboCop and uses it by default when available.
The vim-rubocop plugin runs RuboCop and displays the results in Vim.
There's also a RuboCop checker in syntastic.
If you're a ST2 user you might find the Sublime RuboCop plugin useful.
Here's one great opportunity to contribute to RuboCop - implement RuboCop integration for your favorite editor.
If you're fond of Guard you might like guard-rubocop. It allows you to automatically check Ruby code style with RuboCop when files are modified.
Here's a list of all the people who have contributed to the development of RuboCop.
I'm extremely grateful to each and every one of them!
I'd like to single out Jonas Arvidsson and Yuji Nakayama for their many excellent code contributions as well as valuable feedback and ideas!
If you'd like to contribute to RuboCop, please take the time to go through our short contribution guidelines.
Converting more of the Ruby Style Guide into RuboCop cops is our top priority right now. Writing a new cop is a great way to dive into RuboCop!
Of course, bug reports and suggestions for improvements are always welcome. GitHub pull requests are even better! :-)
If you're interested in everything regarding RuboCop's development, consider joining its Google Group.
RuboCop's changelog is available here.
Copyright (c) 2012-2013 Bozhidar Batsov. See LICENSE.txt for further details.


