Sha256: acb00c4823da2ff28c42315fe6f6a974d1983746030bfc98d185b3da63ee74e1
Contents?: true
Size: 532 Bytes
Versions: 20
Compression:
Stored size: 532 Bytes
Contents
# frozen_string_literal: true require 'shopify_cli' module Rails 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('rails.deploy.help', ShopifyCli::TOOL_NAME) end def self.extended_help ShopifyCli::Context.message('rails.deploy.extended_help', ShopifyCli::TOOL_NAME) end end end end
Version data entries
20 entries across 20 versions & 1 rubygems