Sha256: d39ac2f645d13e5b9420f82c056258a6006708e324acd1945afbc083991e501b
Contents?: true
Size: 721 Bytes
Versions: 11
Compression:
Stored size: 721 Bytes
Contents
require "shopify_cli" module Node module Commands class Populate < ShopifyCli::Command subcommand :Customer, "customers", Project.project_filepath("commands/populate/customer") subcommand :DraftOrder, "draftorders", Project.project_filepath("commands/populate/draft_order") subcommand :Product, "products", Project.project_filepath("commands/populate/product") def call(_args, _name) @ctx.puts(self.class.help) end def self.help ShopifyCli::Context.message("node.populate.help", ShopifyCli::TOOL_NAME) end def self.extended_help ShopifyCli::Context.message("node.populate.extended_help", ShopifyCli::TOOL_NAME) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems