Sha256: d296f49d27e12c34040892e3e611bb2858915a1520f068d253860bfce18201cd
Contents?: true
Size: 529 Bytes
Versions: 20
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
20 entries across 20 versions & 1 rubygems