class CODE_METRICS_APP

(source code)

description

A command line interface to the command MANIFEST_METRICS_COMMAND.

notes

Usage:

el_eiffel -code_metrics -sources <directory path or sources manifest path>
note
	description: "[
		A command line interface to the command ${MANIFEST_METRICS_COMMAND}.
	]"
	notes: "[
		Usage:
		
			el_eiffel -code_metrics -sources <directory path or sources manifest path>
	]"

	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"

	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2024-01-20 19:18:27 GMT (Saturday 20th January 2024)"
	revision: "3"

class
	CODE_METRICS_APP

inherit
	SOURCE_MANIFEST_APPLICATION [MANIFEST_METRICS_COMMAND]

feature {NONE} -- Implementation

	default_make: PROCEDURE [like command]
		do
			Result := agent {like command}.make (create {FILE_PATH})
		end

end