fastlane 2.65.0.beta.20171114010003 → 2.65.0.beta.20171115010004

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9320ab6f7ae03020ddcb7b2da70e69a4695f650f
4
- data.tar.gz: 4a4dd0ba952972ae35413b3b82e1ff8b9afcb1f0
3
+ metadata.gz: 23f8cee33549618df00aef22bccad9bd818d592a
4
+ data.tar.gz: 37503f28b0a30eacba01047b95009f0cbff95d5e
5
5
  SHA512:
6
- metadata.gz: 2b1cc2aefc1a6c8561c5a06075cddd573abd7508651137906658b3d8f6348d9c9e6ebbd67a3f4dbda62fe3bbd625ee6ab9f14950bba635743556e526484e0c85
7
- data.tar.gz: 5ba27066793eafab0abdf17280e4e7c65ca1c6c33c3784e19524f8aa0273c18cb819d0fbb9c5a0d05f11eddfe56fed484002dd03b0b02f4079b567991b7b38b5
6
+ metadata.gz: 66512fe75c8951077fcb446c77270e1f5779e77ba150ef611280fbd981163b5e86362ffc7ef6b3b2b21d523715de893154f270b5764177b9fb570001445e9d2c
7
+ data.tar.gz: 6866692851aedd8e1f2b241ff0118af1f41f2047cd13797b8b23eeab7a4ff0609b466f6af8279ecffd9801de8a35f43bd8c94ac13a618889d7ffaa1c25f8b61c
@@ -230,7 +230,7 @@ module Fastlane
230
230
  "You are using legacy `shenzhen` to build your app, which will be removed soon!\n" \
231
231
  "It is recommended to upgrade to _gym_\n" \
232
232
  "To do so, just replace `ipa(...)` with `gym(...)` in your Fastfile\n" \
233
- "To make code signing work, follow https://docs.fastlane.tools/codesigning/xcode-project/#"
233
+ "To make code signing work, follow https://docs.fastlane.tools/codesigning/xcode-project"
234
234
  end
235
235
  end
236
236
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.65.0.beta.20171114010003'.freeze
2
+ VERSION = '2.65.0.beta.20171115010004'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  MINIMUM_XCODE_RELEASE = "7.0".freeze
5
5
  RUBOCOP_REQUIREMENT = '0.49.1'.freeze
@@ -637,14 +637,10 @@ module Spaceship
637
637
  # The ! is part of some methods when they modify or delete a resource, so we don't want to show it
638
638
  # Using `sub` instead of `delete` as we don't want to allow multiple matches
639
639
  calling_method_name = caller_locations(caller_location, 2).first.label.sub("block in", "").delete("!").strip
640
- begin
641
- team_id = "(Team ID #{self.team_id}) "
642
- rescue
643
- # Showing the team ID is something that's nice to have, however it might cause an exception
644
- # when the user doesn't have any permission at all (e.g. failing at login)
645
- # we still want the error message to show the actual string, but without the team_id in that case
646
- team_id = ""
647
- end
640
+
641
+ # calling the computed property self.team_id can get us into an exception handling loop
642
+ team_id = @current_team_id ? "(Team ID #{@current_team_id}) " : ""
643
+
648
644
  error_message = "User #{self.user} #{team_id}doesn't have enough permission for the following action: #{calling_method_name}"
649
645
  error_message += " (#{additional_error_string})" if additional_error_string.to_s.length > 0
650
646
  raise InsufficientPermissions, error_message
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.65.0.beta.20171114010003
4
+ version: 2.65.0.beta.20171115010004
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -15,7 +15,7 @@ authors:
15
15
  autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
- date: 2017-11-14 00:00:00.000000000 Z
18
+ date: 2017-11-15 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier