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: f1ba9d9232242ae13d67b8a32b91d12aa0d1890d
4
- data.tar.gz: 10deb2e04b0cadacc3c5f24f1a53e99fb60be0a5
3
+ metadata.gz: 3fc353f7ff8006b846e53a363f92ae0600b0b133
4
+ data.tar.gz: 5e44f5ca91bf919d579b7d2ec8d9ee0da8579be7
5
5
  SHA512:
6
- metadata.gz: 055fffb2f956839bdf59129d3ea9b6ff0e36bc62f46442080a5b8db454f8c6e4e5ca671e86e63d9fa127e579e5ad22c6c5d00d64152b4e3d4fb261af8eb07ef8
7
- data.tar.gz: 8c1132b2455d671470e2c0ff25e41d96dd000263ad2e7d0a5888651084f4e12e0d61a4f7dd432c546065157aebcc2917b43e636ff0858234f0d952ff9c9c4268
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
 
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.23.0"
2
+ VERSION = "0.24.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause