fastlane 0.8.0 → 0.8.1
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/lib/fastlane/action_collector.rb +1 -0
- data/lib/fastlane/actions/deliver.rb +3 -1
- data/lib/fastlane/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca27eb7ad9f33fb5ecebf462c2f680a670fba2bf
|
4
|
+
data.tar.gz: 176e24d93d53ce3fd806296312b530fcf8139500
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec9868e6a357517716199df3a2828d7e7baced61ce4f5ff4affb76a962819e14963be65eb0f7f2f4547d4b555143e014eb55bd324bef39e7faee1ce27924da4a
|
7
|
+
data.tar.gz: fc8cc42bb987398e041a96f3883aa372a57b0669e16827a99421fc0fbfa287f6e7dadb5c7634628cef4d4f54292c412d4b74cdecf27d8bab448c6b307fb562fc
|
@@ -19,6 +19,7 @@ module Fastlane
|
|
19
19
|
|
20
20
|
unless did_show_message?
|
21
21
|
Helper.log.debug("Sending Crash/Success information. More information on: https://github.com/fastlane/enhancer")
|
22
|
+
Helper.log.debug("No personal/sensitive data is sent. Only sharing the following:")
|
22
23
|
Helper.log.debug(launches)
|
23
24
|
Helper.log.debug(@error) if @error
|
24
25
|
Helper.log.debug("This information is used to fix failing actions and improve integrations that are often used.")
|
@@ -23,7 +23,9 @@ module Fastlane
|
|
23
23
|
is_beta_ipa: beta,
|
24
24
|
skip_deploy: skip_deploy)
|
25
25
|
|
26
|
-
|
26
|
+
if ENV['DELIVER_IPA_PATH'] # since IPA upload is optional
|
27
|
+
Actions.lane_context[SharedValues::IPA_OUTPUT_PATH] = File.expand_path(ENV['DELIVER_IPA_PATH']) # deliver will store it in the environment
|
28
|
+
end
|
27
29
|
end
|
28
30
|
ensure
|
29
31
|
FastlaneCore::UpdateChecker.show_update_status('deliver', Deliver::VERSION)
|
data/lib/fastlane/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|