fastlane 2.37.0 → 2.38.0.beta.20170606010029
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 +4 -4
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/crash_reporter/crash_reporter.rb +5 -5
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb +1 -1
- metadata +17 -21
- data/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/fastlane/.DS_Store +0 -0
- data/spaceship/lib/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d83b32eea0df422e23f921df999883530dd608d9
|
4
|
+
data.tar.gz: b11cac3ff41408e906aa0aba5edbb6729eae5e40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04df1d2a16d7c05545b6663fd6891b091bbe494e7210c37ecc3884f16dded56dab32bbf01ecb0cf8c0ba350d9dd1c1333431d6d9343f01b531cbc2ef195bdd28
|
7
|
+
data.tar.gz: 92457881fcc87a41c1e4b0f99a3337cc3e3690022f3bb8182e499ce523b51a0a06968c42a94cd9be8970ff62a03aa921f40e3a395e1a4bb49da26ef54afe8aea
|
@@ -6,7 +6,7 @@ module FastlaneCore
|
|
6
6
|
class << self
|
7
7
|
@did_report_crash = false
|
8
8
|
|
9
|
-
@
|
9
|
+
@explicitly_enabled_for_testing = false
|
10
10
|
|
11
11
|
def crash_report_path
|
12
12
|
File.join(FastlaneCore.fastlane_user_dir, 'latest_crash.json')
|
@@ -22,9 +22,9 @@ module FastlaneCore
|
|
22
22
|
return if exception.fastlane_crash_came_from_custom_action?
|
23
23
|
|
24
24
|
# Do not run the crash reporter while tests are happening (it might try to send
|
25
|
-
# a crash report), unless we have
|
25
|
+
# a crash report), unless we have explicitly turned on the crash reporter because
|
26
26
|
# we want to test it
|
27
|
-
return if Helper.test? && !@
|
27
|
+
return if Helper.test? && !@explicitly_enabled_for_testing
|
28
28
|
begin
|
29
29
|
payload = CrashReportGenerator.generate(exception: exception, action: action)
|
30
30
|
send_report(payload: payload)
|
@@ -44,11 +44,11 @@ module FastlaneCore
|
|
44
44
|
end
|
45
45
|
|
46
46
|
def enable_for_testing
|
47
|
-
@
|
47
|
+
@explicitly_enabled_for_testing = true
|
48
48
|
end
|
49
49
|
|
50
50
|
def disable_for_testing
|
51
|
-
@
|
51
|
+
@explicitly_enabled_for_testing = false
|
52
52
|
end
|
53
53
|
|
54
54
|
private
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module FastlaneCore
|
2
2
|
class Interface
|
3
3
|
# Super class for exception types that we do not want to record
|
4
|
-
#
|
4
|
+
# explicitly as crashes or user errors
|
5
5
|
class FastlaneCommonException < FastlaneException; end
|
6
6
|
|
7
7
|
# Raised when there is a build failure in xcodebuild
|
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.
|
4
|
+
version: 2.38.0.beta.20170606010029
|
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-06-
|
18
|
+
date: 2017-06-06 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -802,7 +802,6 @@ files:
|
|
802
802
|
- deliver/lib/deliver/upload_price_tier.rb
|
803
803
|
- deliver/lib/deliver/upload_screenshots.rb
|
804
804
|
- fastlane/README.md
|
805
|
-
- fastlane/lib/.DS_Store
|
806
805
|
- fastlane/lib/assets/Actions.md.erb
|
807
806
|
- fastlane/lib/assets/AppfileTemplate
|
808
807
|
- fastlane/lib/assets/AppfileTemplateAndroid
|
@@ -819,7 +818,6 @@ files:
|
|
819
818
|
- fastlane/lib/assets/s3_plist_template.erb
|
820
819
|
- fastlane/lib/assets/s3_version_template.erb
|
821
820
|
- fastlane/lib/fastlane.rb
|
822
|
-
- fastlane/lib/fastlane/.DS_Store
|
823
821
|
- fastlane/lib/fastlane/action.rb
|
824
822
|
- fastlane/lib/fastlane/action_collector.rb
|
825
823
|
- fastlane/lib/fastlane/actions/README.md
|
@@ -1266,7 +1264,6 @@ files:
|
|
1266
1264
|
- snapshot/lib/snapshot/test_command_generator.rb
|
1267
1265
|
- snapshot/lib/snapshot/update.rb
|
1268
1266
|
- spaceship/README.md
|
1269
|
-
- spaceship/lib/.DS_Store
|
1270
1267
|
- spaceship/lib/assets/languageMapping.json
|
1271
1268
|
- spaceship/lib/assets/languageMappingReadable.json
|
1272
1269
|
- spaceship/lib/spaceship.rb
|
@@ -1371,23 +1368,23 @@ metadata:
|
|
1371
1368
|
post_install_message:
|
1372
1369
|
rdoc_options: []
|
1373
1370
|
require_paths:
|
1374
|
-
- cert/lib
|
1375
|
-
- credentials_manager/lib
|
1376
|
-
- deliver/lib
|
1377
|
-
- fastlane/lib
|
1378
|
-
- fastlane_core/lib
|
1379
|
-
- frameit/lib
|
1380
|
-
- gym/lib
|
1381
|
-
- match/lib
|
1382
1371
|
- pem/lib
|
1383
|
-
- pilot/lib
|
1384
1372
|
- produce/lib
|
1385
|
-
-
|
1386
|
-
- screengrab/lib
|
1373
|
+
- gym/lib
|
1387
1374
|
- sigh/lib
|
1388
|
-
-
|
1375
|
+
- cert/lib
|
1376
|
+
- screengrab/lib
|
1377
|
+
- match/lib
|
1389
1378
|
- spaceship/lib
|
1379
|
+
- scan/lib
|
1380
|
+
- pilot/lib
|
1381
|
+
- fastlane_core/lib
|
1382
|
+
- snapshot/lib
|
1383
|
+
- fastlane/lib
|
1384
|
+
- deliver/lib
|
1385
|
+
- frameit/lib
|
1390
1386
|
- supply/lib
|
1387
|
+
- credentials_manager/lib
|
1391
1388
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1392
1389
|
requirements:
|
1393
1390
|
- - ">="
|
@@ -1395,15 +1392,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1395
1392
|
version: 2.0.0
|
1396
1393
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1397
1394
|
requirements:
|
1398
|
-
- - "
|
1395
|
+
- - ">"
|
1399
1396
|
- !ruby/object:Gem::Version
|
1400
|
-
version:
|
1397
|
+
version: 1.3.1
|
1401
1398
|
requirements: []
|
1402
1399
|
rubyforge_project:
|
1403
|
-
rubygems_version: 2.
|
1400
|
+
rubygems_version: 2.4.5.2
|
1404
1401
|
signing_key:
|
1405
1402
|
specification_version: 4
|
1406
1403
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1407
1404
|
Android apps
|
1408
1405
|
test_files: []
|
1409
|
-
has_rdoc:
|
data/fastlane/lib/.DS_Store
DELETED
Binary file
|
Binary file
|
data/spaceship/lib/.DS_Store
DELETED
Binary file
|