Sha256: bd33d93c767a8ff7ff1ec8461c1b3837e5bc8daad901532d775abfa730dff88e

Contents?: true

Size: 1 KB

Versions: 476

Compression:

Stored size: 1 KB

Contents

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

476 entries across 476 versions & 2 rubygems

Version Path
fastlane-2.26.0 sigh/lib/sigh/repair.rb
fastlane-2.26.0.beta.20170406010019 sigh/lib/sigh/repair.rb
fastlane-2.26.0.beta.20170405010026 sigh/lib/sigh/repair.rb
fastlane-2.26.0.beta.20170404010022 sigh/lib/sigh/repair.rb
fastlane-2.25.0 sigh/lib/sigh/repair.rb
fastlane-2.25.0.beta.20170403010018 sigh/lib/sigh/repair.rb
fastlane-2.25.0.beta.20170402010035 sigh/lib/sigh/repair.rb
fastlane-2.25.0.beta.20170401010021 sigh/lib/sigh/repair.rb
fastlane-2.25.0.beta.20170331010039 sigh/lib/sigh/repair.rb
fastlane-2.25.0.beta.20170330225747 sigh/lib/sigh/repair.rb
fastlane-2.24.0 sigh/lib/sigh/repair.rb
fastlane-2.24.0.beta.20170330010023 sigh/lib/sigh/repair.rb
fastlane-2.24.0.beta.20170329010023 sigh/lib/sigh/repair.rb
fastlane-2.24.0.beta.20170328010037 sigh/lib/sigh/repair.rb
fastlane-2.24.0.beta.20170327010009 sigh/lib/sigh/repair.rb
fastlane-2.24.0.beta.20170326010023 sigh/lib/sigh/repair.rb
fastlane-2.24.0.beta.20170325010032 sigh/lib/sigh/repair.rb
fastlane-2.23.0 sigh/lib/sigh/repair.rb
fastlane-2.23.0.beta.20170322010036 sigh/lib/sigh/repair.rb
fastlane-2.22.0 sigh/lib/sigh/repair.rb