fastlane 2.36.0.beta.20170526010038 → 2.36.0.beta.20170527010029
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cert/README.md +0 -1
- data/deliver/README.md +0 -1
- data/fastlane/lib/fastlane/actions/badge.rb +7 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/README.md +0 -1
- data/fastlane_core/lib/fastlane_core/crash_reporter/crash_report_generator.rb +9 -1
- data/fastlane_core/lib/fastlane_core/crash_reporter/crash_reporter.rb +1 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb +12 -0
- data/frameit/README.md +0 -1
- data/gym/README.md +0 -1
- data/match/README.md +0 -1
- data/pem/README.md +0 -1
- data/pilot/README.md +0 -1
- data/produce/README.md +0 -1
- data/scan/README.md +0 -1
- data/screengrab/README.md +0 -1
- data/sigh/README.md +0 -1
- data/snapshot/README.md +0 -1
- data/spaceship/README.md +0 -1
- data/supply/README.md +0 -1
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c1755e198e1f494af45d3ed8f12cfb2988a8763
|
4
|
+
data.tar.gz: 40ca337ac846257c1820588a28115b143fbb2068
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3176af448bc9198ce9435ff846efcaac628843a79fadb931e20e96faf94854ff5f655faabedf524e35cb600774cd325975e5637ee1abef030d82789d62fca75
|
7
|
+
data.tar.gz: f3a48d339b19f7dea15d682b8bbd975c18cf7b995e21c6573f01930f718a930a0b825da65e0be0a0ec9609fc56593094885a43743d2bfad311a6e3443342ffd7
|
data/cert/README.md
CHANGED
@@ -32,7 +32,6 @@ cert
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/fastlanetools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/cert/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/cert.svg?style=flat)](https://rubygems.org/gems/cert)
|
36
35
|
|
37
36
|
###### Automatically create and maintain iOS code signing certificates.
|
38
37
|
|
data/deliver/README.md
CHANGED
@@ -32,7 +32,6 @@ deliver
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/deliver/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/deliver.svg?style=flat)](https://rubygems.org/gems/deliver)
|
36
35
|
|
37
36
|
###### Upload screenshots, metadata and your app to the App Store using a single command
|
38
37
|
|
@@ -16,7 +16,13 @@ module Fastlane
|
|
16
16
|
shield_gravity: params[:shield_gravity],
|
17
17
|
shield_no_resize: params[:shield_no_resize]
|
18
18
|
}
|
19
|
-
|
19
|
+
begin
|
20
|
+
Badge::Runner.new.run(params[:path], options)
|
21
|
+
rescue => e
|
22
|
+
# We want to catch this error and raise our own so that we are not counting this as a crash in our metrics
|
23
|
+
UI.verbose(e.backtrace.join("\n"))
|
24
|
+
UI.user_error!("Something went wrong while running badge: #{e}")
|
25
|
+
end
|
20
26
|
end
|
21
27
|
|
22
28
|
#####################################################
|
data/fastlane_core/README.md
CHANGED
@@ -28,7 +28,6 @@ FastlaneCore
|
|
28
28
|
|
29
29
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
30
30
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/fastlane_core/LICENSE)
|
31
|
-
[![Gem](https://img.shields.io/gem/v/fastlane_core.svg?style=flat)](https://rubygems.org/gems/fastlane_core)
|
32
31
|
|
33
32
|
All shared code of the fastlane tools is stored in this repository.
|
34
33
|
|
@@ -12,7 +12,15 @@ module FastlaneCore
|
|
12
12
|
return if exception.nil?
|
13
13
|
backtrace = exception.respond_to?(:trimmed_backtrace) ? exception.trimmed_backtrace : exception.backtrace
|
14
14
|
backtrace = FastlaneCore::CrashReportSanitizer.sanitize_backtrace(backtrace: backtrace).join("\n")
|
15
|
-
|
15
|
+
|
16
|
+
if exception.fastlane_crash_came_from_plugin?
|
17
|
+
message = '[PLUGIN_CRASH]'
|
18
|
+
elsif exception.respond_to?(:prefix)
|
19
|
+
message = exception.prefix
|
20
|
+
else
|
21
|
+
message = '[EXCEPTION]'
|
22
|
+
end
|
23
|
+
|
16
24
|
message += ': '
|
17
25
|
|
18
26
|
if exception.respond_to?(:crash_report_message)
|
@@ -19,6 +19,7 @@ module FastlaneCore
|
|
19
19
|
def report_crash(exception: nil, action: nil)
|
20
20
|
return unless enabled?
|
21
21
|
return if @did_report_crash
|
22
|
+
return if exception.fastlane_crash_came_from_custom_action?
|
22
23
|
|
23
24
|
# Do not run the crash reporter while tests are happening (it might try to send
|
24
25
|
# a crash report), unless we have explictly turned on the crash reporter because
|
@@ -23,3 +23,15 @@ module FastlaneCore
|
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
26
|
+
|
27
|
+
class Exception
|
28
|
+
def fastlane_crash_came_from_custom_action?
|
29
|
+
custom_frame = exception.backtrace.find { |frame| frame.start_with?('actions/') }
|
30
|
+
!custom_frame.nil?
|
31
|
+
end
|
32
|
+
|
33
|
+
def fastlane_crash_came_from_plugin?
|
34
|
+
plugin_frame = backtrace.find { |frame| frame.include?('fastlane-plugin-') }
|
35
|
+
!plugin_frame.nil?
|
36
|
+
end
|
37
|
+
end
|
data/frameit/README.md
CHANGED
@@ -32,7 +32,6 @@ frameit
|
|
32
32
|
|
33
33
|
[![Twitter: @KauseFx](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/frameit/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/frameit.svg?style=flat)](https://rubygems.org/gems/frameit)
|
36
35
|
|
37
36
|
###### Quickly put your screenshots into the right device frames
|
38
37
|
|
data/gym/README.md
CHANGED
@@ -32,7 +32,6 @@ gym
|
|
32
32
|
|
33
33
|
[![Twitter: @KauseFx](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/gym/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/gym.svg?style=flat)](https://rubygems.org/gems/gym)
|
36
35
|
|
37
36
|
###### Building your app has never been easier
|
38
37
|
|
data/match/README.md
CHANGED
@@ -32,7 +32,6 @@ match
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/match/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/match.svg?style=flat)](https://rubygems.org/gems/match)
|
36
35
|
|
37
36
|
###### Easily sync your certificates and profiles across your team using git
|
38
37
|
|
data/pem/README.md
CHANGED
@@ -32,7 +32,6 @@ pem
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/pem/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/pem.svg?style=flat)](https://rubygems.org/gems/pem)
|
36
35
|
|
37
36
|
###### Automatically generate and renew your push notification profiles
|
38
37
|
|
data/pilot/README.md
CHANGED
@@ -31,7 +31,6 @@ Pilot
|
|
31
31
|
============
|
32
32
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
33
33
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/pilot/LICENSE)
|
34
|
-
[![Gem](https://img.shields.io/gem/v/pilot.svg?style=flat)](https://rubygems.org/gems/pilot)
|
35
34
|
|
36
35
|
|
37
36
|
###### The best way to manage your TestFlight testers and builds from your terminal
|
data/produce/README.md
CHANGED
@@ -32,7 +32,6 @@ produce
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/produce/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/produce.svg?style=flat)](https://rubygems.org/gems/produce)
|
36
35
|
|
37
36
|
###### Create new iOS apps on iTunes Connect and Dev Portal using your command line
|
38
37
|
|
data/scan/README.md
CHANGED
@@ -32,7 +32,6 @@ scan
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/scan/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/scan.svg?style=flat)](https://rubygems.org/gems/scan)
|
36
35
|
|
37
36
|
###### The easiest way to run tests of your iOS and Mac app
|
38
37
|
|
data/screengrab/README.md
CHANGED
@@ -32,7 +32,6 @@ screengrab
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/screengrab/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/screengrab.svg?style=flat)](https://rubygems.org/gems/screengrab)
|
36
35
|
|
37
36
|
###### Automated localized screenshots of your Android app on every device
|
38
37
|
|
data/sigh/README.md
CHANGED
@@ -32,7 +32,6 @@ sigh
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/sigh/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/sigh.svg?style=flat)](https://rubygems.org/gems/sigh)
|
36
35
|
|
37
36
|
###### Because you would rather spend your time building stuff than fighting provisioning
|
38
37
|
|
data/snapshot/README.md
CHANGED
@@ -32,7 +32,6 @@ snapshot
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/snapshot/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/snapshot.svg?style=flat)](https://rubygems.org/gems/snapshot)
|
36
35
|
|
37
36
|
###### Automate taking localized screenshots of your iOS and tvOS apps on every device
|
38
37
|
|
data/spaceship/README.md
CHANGED
@@ -31,7 +31,6 @@
|
|
31
31
|
|
32
32
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
33
33
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/spaceship/LICENSE)
|
34
|
-
[![Gem](https://img.shields.io/gem/v/spaceship.svg?style=flat)](https://rubygems.org/gems/spaceship)
|
35
34
|
|
36
35
|
`spaceship` exposes both the Apple Developer Center and the iTunes Connect API. This fast and powerful API powers parts of fastlane, and can be leveraged for more advanced fastlane features. Scripting your Developer Center workflow has never been easier!
|
37
36
|
|
data/supply/README.md
CHANGED
@@ -32,7 +32,6 @@ supply
|
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
34
|
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/supply/LICENSE)
|
35
|
-
[![Gem](https://img.shields.io/gem/v/supply.svg?style=flat)](https://rubygems.org/gems/supply)
|
36
35
|
|
37
36
|
###### Command line tool for updating Android apps and their metadata on the Google Play Store
|
38
37
|
|
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.36.0.beta.
|
4
|
+
version: 2.36.0.beta.20170527010029
|
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-05-
|
18
|
+
date: 2017-05-27 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -1368,23 +1368,23 @@ metadata:
|
|
1368
1368
|
post_install_message:
|
1369
1369
|
rdoc_options: []
|
1370
1370
|
require_paths:
|
1371
|
-
- deliver/lib
|
1372
|
-
- sigh/lib
|
1373
1371
|
- match/lib
|
1374
|
-
-
|
1375
|
-
- cert/lib
|
1376
|
-
- credentials_manager/lib
|
1377
|
-
- fastlane/lib
|
1372
|
+
- sigh/lib
|
1378
1373
|
- spaceship/lib
|
1379
|
-
-
|
1380
|
-
- snapshot/lib
|
1381
|
-
- pilot/lib
|
1382
|
-
- frameit/lib
|
1374
|
+
- deliver/lib
|
1383
1375
|
- produce/lib
|
1376
|
+
- gym/lib
|
1377
|
+
- cert/lib
|
1378
|
+
- snapshot/lib
|
1384
1379
|
- supply/lib
|
1385
|
-
-
|
1380
|
+
- fastlane_core/lib
|
1386
1381
|
- screengrab/lib
|
1387
|
-
-
|
1382
|
+
- pem/lib
|
1383
|
+
- fastlane/lib
|
1384
|
+
- credentials_manager/lib
|
1385
|
+
- scan/lib
|
1386
|
+
- frameit/lib
|
1387
|
+
- pilot/lib
|
1388
1388
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1389
1389
|
requirements:
|
1390
1390
|
- - ">="
|