fastlane 1.33.2 → 1.33.3

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: cab3ec19bf79bd6833ce51e4411b9b399896e20d
4
- data.tar.gz: 33dd8172291839b7146d5b8e5f54b141c32339cc
3
+ metadata.gz: bf88c61a4182e34f989e273257aae74aa91ae7c2
4
+ data.tar.gz: 906b823da0f648bbc4c72373ed6074d0a7cd2e4e
5
5
  SHA512:
6
- metadata.gz: 205929e05cfd8b3a0e31b80d126e1e640660e1db1b797b84049753d0d02cacc2557e429e522720a58a3232c1c22fd3e6c731f376c2b409ca6afde87238a371b9
7
- data.tar.gz: 86b9155a366cf7b78055c7b2035cecf15efe525da399dafa98d24327ef0d459943036b2cc37076b401a8917fadd568dfec5613a6483ea894d211a3b34ecaaa61
6
+ metadata.gz: 32fdbfac6614780ec4083c796ce5b668f43633bc6886dc17bad66bd5b5131bfe9c050c4f7fbb1710b3788351de4a748da979a7ee61d04f52a1cbfd9ac7041403
7
+ data.tar.gz: cd911d7445b249c4fd572492dc54126f32c1272fb263401b789ee267806f0d813be54162147f0fbe3c3dd9a94eeead7fa49b37a4ba0af1956d294068eb3d3864
data/README.md CHANGED
@@ -169,9 +169,9 @@ See how [Wikipedia](https://github.com/fastlane/examples#wikipedia-by-wikimedia-
169
169
 
170
170
  `fastlane` tracks the number of errors for each action to detect integration issues. The data will be sent to [fastlane-enhancer](https://github.com/fastlane/enhancer) and is available publicly.
171
171
 
172
- You can easily opt-out by adding `opt_out_usage` to your `Fastfile` or by setting the environment variable `FASTLANE_OPT_OUT_USAGE`.
172
+ You can easily opt-out by adding `opt_out_usage` to your `Fastfile` or by setting the environment variable `FASTLANE_OPT_OUT_USAGE`. To also disable update checks, set the `FASTLANE_SKIP_UPDATE_CHECK` variable.
173
173
 
174
- To also disable update checks, set the `FASTLANE_SKIP_UPDATE_CHECK` variable.
174
+ You can optionally submit crash reports, run `fastlane enable_crash_reporting` to get started. This makes resolving issues much easier and helps improving fastlane. No sensitive information is sent.
175
175
 
176
176
  ## Credentials
177
177
  A detailed description about how `fastlane` stores your credentials is available on a [separate repo](https://github.com/fastlane/credentials_manager).
@@ -131,6 +131,14 @@ class FastlaneApplication
131
131
  end
132
132
  end
133
133
 
134
+ command :enable_crash_reporting do |c|
135
+ c.syntax = 'fastlane enable_crash_reporting'
136
+ c.description = 'Enable crash reporting to improve fastlane'
137
+ c.action do |args, options|
138
+ FastlaneCore::CrashReporting.enable
139
+ end
140
+ end
141
+
134
142
  default_command :trigger
135
143
 
136
144
  run!
@@ -140,6 +148,8 @@ end
140
148
  begin
141
149
  FastlaneCore::UpdateChecker.start_looking_for_update('fastlane')
142
150
  FastlaneApplication.new.run
151
+ rescue => ex
152
+ FastlaneCore::CrashReporting.handle_crash(ex)
143
153
  ensure
144
154
  FastlaneCore::UpdateChecker.show_update_status('fastlane', Fastlane::VERSION)
145
155
  end
@@ -77,6 +77,8 @@ module Fastlane
77
77
 
78
78
  # Print a table as summary of the executed actions
79
79
  def self.print_table(actions)
80
+ return if actions.count == 0
81
+
80
82
  require 'terminal-table'
81
83
 
82
84
  rows = []
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.33.2'
2
+ VERSION = '1.33.3'
3
3
  end
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: 1.33.2
4
+ version: 1.33.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -176,7 +176,7 @@ dependencies:
176
176
  requirements:
177
177
  - - ">="
178
178
  - !ruby/object:Gem::Version
179
- version: 0.22.3
179
+ version: 0.23.0
180
180
  - - "<"
181
181
  - !ruby/object:Gem::Version
182
182
  version: 1.0.0
@@ -186,7 +186,7 @@ dependencies:
186
186
  requirements:
187
187
  - - ">="
188
188
  - !ruby/object:Gem::Version
189
- version: 0.22.3
189
+ version: 0.23.0
190
190
  - - "<"
191
191
  - !ruby/object:Gem::Version
192
192
  version: 1.0.0
@@ -689,7 +689,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
689
689
  version: '0'
690
690
  requirements: []
691
691
  rubyforge_project:
692
- rubygems_version: 2.4.8
692
+ rubygems_version: 2.4.6
693
693
  signing_key:
694
694
  specification_version: 4
695
695
  summary: Connect all iOS deployment tools into one streamlined workflow