
Add a shim and a command that can be used to easily add a single directory to your `PATH` (`Library/Homebrew/shims/gems`) and have it automatically install, configure and run `rubocop` so you can use it for in-editor integrations.
3 lines
35 B
Bash
Executable File
3 lines
35 B
Bash
Executable File
#!/bin/bash
|
|
exec brew rubocop "$@"
|