Class: Pindo::Resign::MacAppResignAdapter

Inherits:
Object
  • Object
show all
Defined in:
lib/pindo/module/resign/mac_app_resign_adapter.rb

Instance Method Summary collapse

Instance Method Details

#resign(package_path:, bundle_id:, signing_identity:, profiles:, **_options) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/pindo/module/resign/mac_app_resign_adapter.rb', line 6

def resign(package_path:, bundle_id:, signing_identity:, profiles:, **_options)
  Pindo::MacAppResignHelper.resign_app(
    app_path: package_path,
    bundle_id: bundle_id,
    signing_identity: signing_identity,
    profiles: profiles
  )
end