Sha256: 3a813d7561b08bc37483f11d9a4b7e3c2c835d62b03b009bf7c70b5a9c4e9397
Contents?: true
Size: 559 Bytes
Versions: 39
Compression:
Stored size: 559 Bytes
Contents
require 'inch/cli/command/options/stats' require 'inch/cli/command/output/stats' module Inch module CLI module Command class Stats < List register_command_as :stats def description 'Show statistics' end def usage 'Usage: inch stats [paths] [options]' end def run(*args) prepare_codebase(*args) context = API::Stats.new(codebase, @options) Output::Stats.new(@options, context.objects, context.grade_lists) end end end end end
Version data entries
39 entries across 39 versions & 1 rubygems