Sha256: 0053580e00930d6cfed9b884a9d37dc18a87c8ee185fba8e8e1e4cbf3e345e30
Contents?: true
Size: 660 Bytes
Versions: 49
Compression:
Stored size: 660 Bytes
Contents
module ShopifyCLI module Services module App class ConnectService < BaseService attr_reader :app_type, :project, :context def initialize(app_type:, project:, context:) @app_type = app_type @project = project @context = context super() end def call unless project&.env.nil? context.puts(context.message("core.app.connect.production_warning")) end app = ShopifyCLI::Connect.new(context).default_connect(app_type.to_s) context.done(context.message("core.app.connect.connected", app)) end end end end end
Version data entries
49 entries across 49 versions & 1 rubygems