Sha256: 4329ede7a61b66ca538690ec4ae45bc90ce7405f2bc828f32129beb13fddc9ae
Contents?: true
Size: 529 Bytes
Versions: 11
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true require "shopify_cli" module Node module Commands class Deploy < ShopifyCli::Command subcommand :Heroku, "heroku", Project.project_filepath("commands/deploy/heroku") def call(*) @ctx.puts(self.class.help) end def self.help ShopifyCli::Context.message("node.deploy.help", ShopifyCli::TOOL_NAME) end def self.extended_help ShopifyCli::Context.message("node.deploy.extended_help", ShopifyCli::TOOL_NAME) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems