Sha256: a34e1364964b901dadef899f50091a17f02718ec0036668de646955c3d300025
Contents?: true
Size: 319 Bytes
Versions: 17
Compression:
Stored size: 319 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true $LOAD_PATH.unshift(File.dirname(File.realpath(__FILE__)) + '/../lib') require 'rubocop' require 'benchmark' cli = RuboCop::CLI.new result = 0 time = Benchmark.realtime do result = cli.run end puts "Finished in #{time} seconds" if cli.options[:debug] exit result
Version data entries
17 entries across 17 versions & 2 rubygems