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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e853c65eb491960197f6a6490570114c267718f8
4
- data.tar.gz: d21148557d3cd66ab6db4e5b08961914686e5d15
3
+ metadata.gz: ca27eb7ad9f33fb5ecebf462c2f680a670fba2bf
4
+ data.tar.gz: 176e24d93d53ce3fd806296312b530fcf8139500
5
5
  SHA512:
6
- metadata.gz: 3ab3ce015edb69c2d896b83f0dded4552aaeca4d6f64f86a4444b001ea5e0bf550d9ff02faf8aeceb00a2be8c42eff1d659d62e982d1e20f1712a100a71acff0
7
- data.tar.gz: 5c82dbe93c7d5751c89b1dcfaa55d5d6dc52a445b855fa02f6f727a29a00a4fa346575f2469067b29543ad4a453eebfaa21fdbe45f60b16763c71c92460120e9
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
- Actions.lane_context[SharedValues::IPA_OUTPUT_PATH] = File.expand_path(ENV['DELIVER_IPA_PATH']) # deliver will store it in the environment
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)
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '0.8.0'
2
+ VERSION = '0.8.1'
3
3
  end
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.0
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-14 00:00:00.000000000 Z
11
+ date: 2015-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri