Sha256: af27ef0feb2517a3380bf9bc4e0cb6f3ab0dd4d6a28e0782d9e92c894bdefa6f
Contents?: true
Size: 395 Bytes
Versions: 23
Compression:
Stored size: 395 Bytes
Contents
# frozen_string_literal: true require 'thor' require 'norad_cli/cli/secrepo' require 'norad_cli/cli/sectest' module NoradCli class CLI < Thor # Register all of the subcommands register(Repo, 'repo', 'repo <command>', 'Commands for norad security repos housing security tests.') register(Sectest, 'sectest', 'sectest <command>', 'Commands to create new security tests.') end end
Version data entries
23 entries across 23 versions & 1 rubygems
Version | Path |
---|---|
norad_cli-0.1.2 | lib/norad_cli/cli/main.rb |
norad_cli-0.1.1 | lib/norad_cli/cli/main.rb |
norad_cli-0.1.0 | lib/norad_cli/cli/main.rb |