Sha256: b9a491086bdc0f6c7059a95e26f3919b6ca65bbbea6859747d541ed1b1be4a48
Contents?: true
Size: 423 Bytes
Versions: 9
Compression:
Stored size: 423 Bytes
Contents
# frozen_string_literal: true require "shopify_cli" module ShopifyCli class SubCommand < Command class << self def call(args, command_name, parent_command) cmd = new(@ctx) args = cmd.options.parse(@_options, args[1..-1] || []) return call_help(parent_command, command_name) if cmd.options.help run_prerequisites cmd.call(args, command_name) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems