Sha256: 6427d99e0ee43c980dfada09ae9e3628bea8baa1b33ee0a137eefd471cd298bc
Contents?: true
Size: 449 Bytes
Versions: 20
Compression:
Stored size: 449 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
20 entries across 20 versions & 1 rubygems