From 2a64836a9bd67601e120a1987a711e99d1fb06f1 Mon Sep 17 00:00:00 2001 From: "Nate Hopkins (hopsoft)" Date: Fri, 17 May 2024 14:48:20 -0600 Subject: [PATCH] Add alias for generate --- lib/containers/cli.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/containers/cli.rb b/lib/containers/cli.rb index 89fad2d..904d2a8 100644 --- a/lib/containers/cli.rb +++ b/lib/containers/cli.rb @@ -16,7 +16,9 @@ class CLI < Thor Dir["commands/**/*.rb", base: __dir__].each { |f| require_relative f } desc "generate", "Commands used to generate files for the project" + long_desc "Also aliased as `init`" subcommand "generate", Generator::CLI + map "init" => :generate protected