Sha256: 1a60a8521b849bfc20dd8bc77778267a7a2157d4a8f45ecea0943ea4476b6ac6
Contents?: true
Size: 583 Bytes
Versions: 16
Compression:
Stored size: 583 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true $LOAD_PATH.unshift File.join(__dir__, %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
16 entries across 16 versions & 1 rubygems