class Tug::ProvisionCommand

Public Instance Methods

execute(config_file) click to toggle source
# File lib/tug/command/provision_command.rb, line 4
def execute(config_file)
  keychain = config_file.keychain

  keychain.create_keychain
  keychain.select_keychain(keychain.name)
  keychain.unlock_keychain
  keychain.set_timeout
  keychain.import_apple_certificate
  keychain.import_distribution_certificate
  keychain.import_private_key
  keychain.import_profile
end