lib/gym/error_handler.rb in gym-0.3.2 vs lib/gym/error_handler.rb in gym-0.3.3

- old
+ new

@@ -16,14 +16,21 @@ print "Invalid code signing settings" print "Your project defines a provisioning profile that doesn't match the bundle identifier of your app" print "Make sure you use the correct provisioning profile for this app" print "Take a look at the ouptput above for more information" print "You can follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md" - when /provisioning profiles matching the bundle identifier “(.*)”/ + when /provisioning profiles matching the bundle identifier .(.*)./ # the . around the (.*) are for the strange " print "You don't have the provisioning profile for '#{$1}' installed on the local machine" print "Make sure you have the profile on this computer and it's properly installed" print "You can use sigh (https://github.com/KrauseFx/sigh) to download and install the provisioning profile" print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md" + when /matching the bundle identifier .(.*). were found/ # the . around the (.*) are for the strange " + print "You don't have a provisioning profile for the bundle identifier '#{$1}' installed on the local machine" + print "Make sure you have the profile on this computer and it's properly installed" + print "You can use sigh (https://github.com/KrauseFx/sigh) to download and install the provisioning profile" + print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md" + + # Insert more code signing specific errors here when /code signing is required/ print "Your project settings define invalid code signing settings" print "To generate an ipa file you need to enable code signing for your project" print "Additionally make sure you have a code signing identity set" print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"