fastlane_core 0.23.0 → 0.24.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3fc353f7ff8006b846e53a363f92ae0600b0b133
|
|
4
|
+
data.tar.gz: 5e44f5ca91bf919d579b7d2ec8d9ee0da8579be7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6782f05a6fa2152dd7d7b639d2d2aca60cdcba02e082ab7e51115a9f3ddeda43197c90c9a67799e10aff5e89c4a8ebb59f2ac87203606573e2ae0d4759b0cb0
|
|
7
|
+
data.tar.gz: c9d41b59baaaeceb41a28617c1c5e1bd50b8128653980d3e93c955b5c3da5544a1484ce92b644fbb633d3bd3d42be2b7d4c10db7f514f349619f75d1e5f1f9b1
|
|
@@ -13,6 +13,11 @@ module FastlaneCore
|
|
|
13
13
|
puts "Thanks for helping making fastlane better".green
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
+
def disable
|
|
17
|
+
File.delete(file_path) if File.exist?(file_path)
|
|
18
|
+
puts "Disabled crash reporting :("
|
|
19
|
+
end
|
|
20
|
+
|
|
16
21
|
def enabled?
|
|
17
22
|
File.exist?(file_path)
|
|
18
23
|
end
|
|
@@ -23,6 +28,7 @@ module FastlaneCore
|
|
|
23
28
|
puts "👍 This makes resolving issues much easier and helps improving fastlane".yellow
|
|
24
29
|
puts "🔒 The reports might contain personal data, but will be stored securely on getsentry.com".yellow
|
|
25
30
|
puts "✨ Once crash reporting is enabled, you have much cleaner output when something goes wrong".yellow
|
|
31
|
+
puts "🙊 More information about privacy: https://github.com/KrauseFx/fastlane/releases/tag/1.33.3".yellow
|
|
26
32
|
puts "-------------------------------------------------------------------------------------------".yellow
|
|
27
33
|
end
|
|
28
34
|
|