rubocop-daemon
rubocop-daemon makes RuboCop faster.
Installation
Install rubocop-daemon via rubygems.org:
gem install rubocop-daemonor if you install RuboCop using bundler, put this in your Gemfile:
gem 'rubocop-daemon', require: falseUsage
To start the server, just run:
rubocop-daemon startThen you can execute RuboCop fast:
rubocop-daemon execAnd you can pass files:
rubocop-daemon exec foo.rb bar.rbIf you want to pass arguments to RuboCop, you should separate arguments by --:
rubocop-daemon exec -- --auto-correctCommands
You can control the server like this:
rubocop-daemon <command>
Available commands:
-
start: start the server -
stop: stop the server -
status: print out whether the server is currently running -
restart: restart the server -
exec [file1, file2, ...] [-- [rubocop-options]]: invokerubocopwith the givenrubocop-options
More speed
rubocop-daemon-wrapper is a bash script that talks to the rubocop-daemon server via netcat. This provides much lower latency than the rubocop-daemon Ruby script.
You will need to manually download and install the bash script:
(Unfortunately this cannot be done automatically with
rubygems.)
curl https://raw.githubusercontent.com/fohte/rubocop-daemon/master/bin/rubocop-daemon-wrapper -o /tmp/rubocop-daemon-wrapper
sudo mkdir -p /usr/local/bin/rubocop-daemon-wrapper
sudo mv /tmp/rubocop-daemon-wrapper /usr/local/bin/rubocop-daemon-wrapper/rubocop
sudo chmod +x /usr/local/bin/rubocop-daemon-wrapper/rubocop
Add /usr/local/bin/rubocop-daemon-wrapper to the beginning of your PATH:
# ~/.bashrc
export PATH="/usr/local/bin/rubocop-daemon-wrapper:$PATH"Now the rubocop wrapper command will always be used by default.
rubocop-daemon-wrapper will automatically start the daemon server if it is not already running. So the first call will be about the same as rubocop, but the second call will be much faster.
Use with Bundler
If you install rubocop-daemon with bundler, you should set RUBOCOP_DAEMON_USE_BUNDLER environment variable:
$ export RUBOCOP_DAEMON_USE_BUNDLER=trueNow rubocop-daemon-wrapper will call the rubocop-daemon command with bundle exec.
Use with VS Code
Unfortunately, the vscode-ruby extension doesn't really allow you to customize the rubocop path or binary. (You can change the linter path, but not the formatter.)
In the meantime, you could just override the rubocop binary with a symlink to rubocop-daemon-wrapper:
# Find your rubocop path
$ which rubocop
<HOME>/.rvm/gems/ruby-x.y.z/bin/rubocop
# Override rubocop with a symlink to rubocop-daemon-wrapper
$ ln -fs /usr/local/bin/rubocop-daemon-wrapper $HOME/.rvm/gems/ruby-x.y.z/bin/rubocopOr, if you use rbenv:
# which rubocop is rbenv running?
$ rbenv which rubocop
<HOME>/.rbenv/versions/x.y.z/bin/rubocop
# Override rubocop with a symlink to rubocop-daemon-wrapper
$ ln -fs /usr/local/bin/rubocop-daemon-wrapper $HOME/.rbenv/versions/x.y.z/bin/rubocopNow VS Code will use the rubocop-daemon-wrapper script, and formatOnSave should be much faster (~150ms instead of 3-5 seconds).
Use with Neovim/Vim8 and ALE
ALE setting example:
" Use `rubocop-daemon-wrapper` instead of `rubocop`
let g:ale_ruby_rubocop_executable = 'rubocop-daemon-wrapper'Auto-correct on save setting example:
" optional: Set fixer(not only linter).
let g:ale_fixers = {
\ 'ruby': ['rubocop'],
\}
" optional: Auto-correct on save.
let g:ale_fix_on_save = 1Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/fohte/rubocop-daemon.
License
The gem is available as open source under the terms of the MIT License.