🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

rubocop-junit-formatter

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rubocop-junit-formatter

bundlerRubygems
Version
0.1.4
Version published
Maintainers
1
Created
Source

Rubocop::Junit::Formatter

Provides JUnit formatting for Rubocop. Usable with Continuous integration services and IDEs.

Usage

In order to have the formatter available inside CLI utility, you need to require it first.

Example for CI, that provides $REPORTS_DIR environment variable for collecting JUnit reports

bundle exec rubocop \\
  -r $(bundle show rubocop-junit-formatter)/lib/rubocop/formatter/junit_formatter.rb \\
  --format RuboCop::Formatter::JUnitFormatter --out $REPORTS_DIR/rubocop.xml

Important options are -r (require class) and --format. Option --out should go after appropriate --format. And you can have multiple formats if you like.

Installation

Add this line to your application's Gemfile:

gem 'rubocop-junit-formatter'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rubocop-junit-formatter

Contributing

  • Fork it ( https://github.com/[my-github-username]/rubocop-junit-formatter/fork )
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create a new Pull Request

FAQs

Package last updated on 13 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts