Sha256: 62c80f87a80f83c4dd36c176ca202b27d9af6dd9e2aa60a6a2cd28cc073ef662
Contents?: true
Size: 594 Bytes
Versions: 39
Compression:
Stored size: 594 Bytes
Contents
#!/usr/bin/env ruby # -*- encoding: utf-8 -*- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), %w(.. lib)) require 'cookstyle' # force the fail level to :convention so that we can set all our new rules to # the lowest level of :refactor without failing everyone's CI jobs unless ARGV.include?('--fail-level') ARGV << '--fail-level' ARGV << 'C' end # if only -v is passed we'll get 3 args (-v, --fail-level, and C) if ARGV.size == 3 && %w(-v --version).include?(ARGV.first) puts "Cookstyle #{Cookstyle::VERSION}" print ' * RuboCop ' end load Gem.bin_path('rubocop', 'rubocop')
Version data entries
39 entries across 39 versions & 1 rubygems