Sha256: 2beb465913539c15ea24c6d6f40e86fe7778909019e7973966174736eeaab42e
Contents?: true
Size: 774 Bytes
Versions: 39
Compression:
Stored size: 774 Bytes
Contents
require 'inch/cli/command/options/list' require 'inch/cli/command/output/list' module Inch module CLI module Command class List < BaseList register_command_as :list def description 'Lists all objects with their results' end def usage 'Usage: inch list [paths] [options]' end # Runs the commandline utility, parsing arguments and displaying a # list of objects # # @param [Array<String>] args the list of arguments. # @return [void] def run(*args) prepare_codebase(*args) context = API::List.new(codebase, @options) Output::List.new(@options, context.objects, context.grade_lists) end end end end end
Version data entries
39 entries across 39 versions & 1 rubygems