class ContainerShip::CLI
Public Instance Methods
exec(cluster_name, service_name, environment, build_number)
click to toggle source
# File lib/container_ship/cli.rb, line 19 def exec(cluster_name, service_name, environment, build_number) Command::ExecCommand.new.run(cluster_name, service_name, environment, build_number) end
init(cluster_name)
click to toggle source
# File lib/container_ship/cli.rb, line 9 def init(cluster_name) Command::InitCommand.new.run(cluster_name) end
ship(cluster_name, service_name, environment, build_number)
click to toggle source
# File lib/container_ship/cli.rb, line 14 def ship(cluster_name, service_name, environment, build_number) Command::ShipCommand.new.run(cluster_name, service_name, environment, build_number) end
version()
click to toggle source
# File lib/container_ship/cli.rb, line 24 def version say ContainerShip::VERSION end