lib/neeto_deploy/cli.rb in neetodeploy-1.1.12 vs lib/neeto_deploy/cli.rb in neetodeploy-1.1.13

- old
+ new

@@ -14,10 +14,11 @@ require_relative "cli/env/commands" require_relative "cli/redis/commands" require_relative "cli/pg/commands" require_relative "cli/addon/commands" require_relative "cli/autoscaling_config/commands" + require_relative "cli/certificates/commands" def self.start(*) super end @@ -51,7 +52,10 @@ desc "addon", "Manage addons" subcommand "addon", Addon::Commands desc "autoscaling_config", "Manage autoscaling" subcommand "autoscaling_config", AutoscalingConfig::Commands + + desc "certificates", "Manage certificates" + subcommand "certificates", Certificates::Commands end end