- Simplifies performing static code analysis for ruby
- Creates line-based violation reports on Github

Setup
Add the following to
Gemfile:gem 'copperizer'Generate configuration files:
bundle exec rails generate copperizer:configThis will create two files:
.rubocop.localch.yml- with master configuration.rubocop.yml- for your specific tweaks per project
Keep in mind that
.rubocop.localch.ymlwill always be overwritten and should never be modified.If needed, tweak the configuration in
.rubocop.ymlYou're good to go
Use Rubocop
After configuration is generated you can run rubocop.
Useful options:
rubocop --format offensesThis will generate a list of offenses sorted by number of occurrences - useful for tweaking configuration
rubocop --auto-gen-configGenerates
.rubocop_todo.ymlwith a configuration that disables all offended cops. This way you can enable & fix them step by step.If you want to use this approach remember to add
rubocop_todo.ymltoinherit_fromlist in the configurationrubocop --auto-correct
Tries to automatically fix some of the offenses. Might be a good starting point for fixing code style. Use with caution as it's marked as experimental.
Run checkstyle
Simply run the following rake task:
GIT_REPOSITORY=https://github.com/local-ch/copperizer GITHUB_TOKEN=your_github_token rake checkstyle
Exit code determines if static code analysis was successful or if any violations was found.
The GIT_REPOSITORY takes the link to the Github repo.
You can define the RESULT_PATH (e.g. RESULT_PATH='tmp/checkstyle.json') to define where violation reports are stored.
The GITHUB_TOKEN is required to make line-based violation comments on Github.