fastlane 1.7.1 → 1.7.2

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: 497287926e715d13c815fcce13f5f98031a9a898
4
- data.tar.gz: 90ef8d8ef376b4d16f4a60356a3754aee8d14824
3
+ metadata.gz: a71f7a01a4b843699d4c8ffa25c8a62288415301
4
+ data.tar.gz: 8ad55d2dbc5fb2f01860add0db0d46addb3107de
5
5
  SHA512:
6
- metadata.gz: e96bebdee0225f004f62686edce9589f452c9e83d9a52d85d184d1e452e602108336755feea9b74e700faa2436af03ecfe8675b4794fc1ca47bad500a18ef1a9
7
- data.tar.gz: e07b701f7405899373c446962c884a35dbc90a01888d488b779691beee2e8befefe17371446fb5cc007441f2d497dbccb7e0a29fc80a983ae7496c13aee8818a
6
+ metadata.gz: 594ed8eb7a14f84ae83e0d292a79741bc58123d6c3e2a2707d4b16154260fc872d7e9397ecc70361234cdf3c6d91110a4a4e9d7f6987161db0893dc97c42bc46
7
+ data.tar.gz: 62673a122e8ed81f85df089da8f8794f54be858b965406b3d1aba2351661cccd4e7e7aa3db6edfee35d5fe03c50e98e6c803562fc7de5ce35045e56408010187
@@ -1,5 +1,6 @@
1
1
  require 'fastlane/core_ext/string' # this has to be above most of the other requires
2
2
  require 'fastlane/version'
3
+ require 'fastlane/actions/actions_helper' # has to be before fast_file
3
4
  require 'fastlane/fast_file'
4
5
  require 'fastlane/dependency_checker'
5
6
  require 'fastlane/runner'
@@ -8,7 +9,6 @@ require 'fastlane/fastlane_folder'
8
9
  require 'fastlane/junit_generator'
9
10
  require 'fastlane/lane_manager'
10
11
  require 'fastlane/action'
11
- require 'fastlane/actions/actions_helper'
12
12
  require 'fastlane/action_collector'
13
13
  require 'fastlane/supported_platforms'
14
14
  require 'fastlane/configuration_helper'
@@ -82,6 +82,8 @@ module Fastlane
82
82
  "A build error occured. This can have many reasons, usually",
83
83
  "it has something to do with code signing. The `ipa` action",
84
84
  "uses `shenzhen` under the hood: https://github.com/nomad/shenzhen",
85
+ "For code signing related issues, check out this guide:",
86
+ "https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md",
85
87
  "The command that was used by fastlane:",
86
88
  core_command,
87
89
  "-------------------------------------------------------"
@@ -21,6 +21,8 @@ module Fastlane
21
21
 
22
22
  Actions.lane_context[SharedValues::SIGH_PROFILE_PATH] = path # absolute path
23
23
  Actions.lane_context[SharedValues::SIGH_UDID] = ENV["SIGH_UDID"] if ENV["SIGH_UDID"] # The UDID of the new profile
24
+
25
+ return ENV["SIGH_UDID"] # return the UDID of the new profile
24
26
  ensure
25
27
  FastlaneCore::UpdateChecker.show_update_status('sigh', Sigh::VERSION)
26
28
  end
@@ -84,7 +84,7 @@ module Fastlane
84
84
  headings: ['Key', 'Description'],
85
85
  rows: output
86
86
  )
87
- puts "Access the output values using `Actions.lane_context[Actions::SharedValues::VARIABLE_NAME]`"
87
+ puts "Access the output values using `lane_context[SharedValues::VARIABLE_NAME]`"
88
88
  puts ""
89
89
  end
90
90
 
@@ -2,6 +2,8 @@ module Fastlane
2
2
  class FastFile
3
3
  attr_accessor :runner
4
4
 
5
+ SharedValues = Fastlane::Actions::SharedValues
6
+
5
7
  # @return The runner which can be executed to trigger the given actions
6
8
  def initialize(path = nil)
7
9
  return unless (path || '').length > 0
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.7.1'
2
+ VERSION = '1.7.2'
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.7.1
4
+ version: 1.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause