Sha256: 90e6316a194c9129fec23224bb457e18c41c2889f8d0ee98e7bc87508158bfb9
Contents?: true
Size: 532 Bytes
Versions: 11
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
11 entries across 11 versions & 1 rubygems