Sha256: 29988c3742f5faedc4fa747af1da669cc0937b22e1ceabf8c8eadd0c3e12cd7e

Contents?: true

Size: 1.06 KB

Versions: 656

Compression:

Stored size: 1.06 KB

Contents

require 'spaceship'

require_relative 'module'

module Sigh
  class Repair
    def repair_all
      UI.message("Starting login with user '#{Sigh.config[:username]}'")
      Spaceship.login(Sigh.config[:username], nil)
      Spaceship.select_team
      UI.message("Successfully logged in")

      # Select all 'Invalid' or 'Expired' provisioning profiles
      broken_profiles = Spaceship.provisioning_profile.all.find_all do |profile|
        (profile.status == "Invalid" or profile.status == "Expired")
      end

      if broken_profiles.count == 0
        UI.success("All provisioning profiles are valid, nothing to do")
        return
      end

      UI.success("Going to repair #{broken_profiles.count} provisioning profiles")

      # Iterate over all broken profiles and repair them
      broken_profiles.each do |profile|
        UI.message("Repairing profile '#{profile.name}'...")
        profile.repair! # yes, that's all you need to repair a profile
      end

      UI.success("Successfully repaired #{broken_profiles.count} provisioning profiles")
    end
  end
end

Version data entries

656 entries across 656 versions & 5 rubygems

Version Path
fastlane-2.202.0 sigh/lib/sigh/repair.rb
fastlane-2.201.2 sigh/lib/sigh/repair.rb
fastlane-2.201.1 sigh/lib/sigh/repair.rb
fastlane-2.201.0 sigh/lib/sigh/repair.rb
fastlane-2.201.0.rc3 sigh/lib/sigh/repair.rb
fastlane-2.201.0.rc2 sigh/lib/sigh/repair.rb
fastlane-2.201.0.rc1 sigh/lib/sigh/repair.rb
fastlane-2.200.0 sigh/lib/sigh/repair.rb
fastlane-2.199.0 sigh/lib/sigh/repair.rb
fastlane-2.198.1 sigh/lib/sigh/repair.rb
fastlane-2.198.0 sigh/lib/sigh/repair.rb
fastlane-2.197.0 sigh/lib/sigh/repair.rb
fastlane-2.196.0 sigh/lib/sigh/repair.rb
fastlane-2.195.0 sigh/lib/sigh/repair.rb
fastlane-2.194.0 sigh/lib/sigh/repair.rb
fastlane-2.193.1 sigh/lib/sigh/repair.rb
fastlane-2.193.0 sigh/lib/sigh/repair.rb
fastlane-2.192.0 sigh/lib/sigh/repair.rb
fastlane-2.191.0 sigh/lib/sigh/repair.rb
fastlane-2.190.0 sigh/lib/sigh/repair.rb