Sha256: dbf244452172c25af518d3755140d4705cd6b9f612e8435af432394fa4b1f1cb
Contents?: true
Size: 465 Bytes
Versions: 14
Compression:
Stored size: 465 Bytes
Contents
# frozen_string_literal: true module GoNative module Commands module IOS class SetBundleId < Base desc 'Sets bundle Id ' argument :bundle_id, required: true, desc: 'Bundle id for the app' option :with_entitlements, type: :boolean, default: false def call(bundle_id:, with_entitlements:, **) Plugins::IOS::SetBundleId.call(bundle_id, with_entitlements) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems