fastlane_core 0.44.1 → 0.44.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e70ec3b1c2df992ceca9d9e798578da41816585
4
- data.tar.gz: cb9d90fd7b6adfd291f10a357456e2b97cc99913
3
+ metadata.gz: cfeea37314ad8f63138999f66705d5acc9f78e77
4
+ data.tar.gz: 46686b11d49c42a1f59daab21cf96aa39e0b41ed
5
5
  SHA512:
6
- metadata.gz: 006a7dcf3a72aa2ab76b7337e89a79bf2225fa22bd9ebb8e88d73cafd00f42732a2bbf21e4d7f323efc5cc9aa883ba2600f61b0f8700c49c81c40b6b16308ef5
7
- data.tar.gz: 5254ee4b21926081821138ef6b15f4733736b0270dfa8604cb294a1970473710ffc9efa0b90252cce265197e53615e7db4f91d4b58c974cb9fe77c6be73aebf2
6
+ metadata.gz: ca5035d733f284d0d6207a63cf13ae3f8852c650f1c5ebec08fa19c19656ea1cb7e1ec44242a561479da4bce11494865c6389542563b60f2323d17433275442e
7
+ data.tar.gz: 79faeefaeef0bd72fbf7079a12c2f6bb24754a0ab2e6c6bede7f173a6b84a6da7d42ca4f6fe2cdda249995d297a1caaec50be520b6de976b709b2894e999218a
@@ -3,6 +3,13 @@ require 'colored'
3
3
 
4
4
  module FastlaneCore
5
5
  module Helper
6
+ # This method is deprecated, use the `UI` class
7
+ # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/UI.md
8
+ def self.log
9
+ UI.deprecated "Helper.log is deprecated. Use `UI` class instead"
10
+ UI.current.log
11
+ end
12
+
6
13
  # Runs a given command using backticks (`)
7
14
  # and prints them out using the UI.command method
8
15
  def self.backticks(command, print: true)
@@ -273,7 +273,7 @@ module FastlaneCore
273
273
  def initialize(user = nil, password = nil, use_shell_script = false)
274
274
  # Xcode 6.x doesn't have the same iTMSTransporter Java setup as later Xcode versions, so
275
275
  # we can't default to using the better direct Java invocation strategy for those versions.
276
- use_shell_script ||= Helper.xcode_version.start_with?('6.')
276
+ use_shell_script ||= Helper.is_mac? && Helper.xcode_version.start_with?('6.')
277
277
  use_shell_script ||= !ENV['FASTLANE_ITUNES_TRANSPORTER_USE_SHELL_SCRIPT'].nil?
278
278
 
279
279
  # First, see if we have an application specific password
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.44.1".freeze
2
+ VERSION = "0.44.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.44.1
4
+ version: 0.44.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-23 00:00:00.000000000 Z
11
+ date: 2016-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -385,7 +385,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
385
385
  version: '0'
386
386
  requirements: []
387
387
  rubyforge_project:
388
- rubygems_version: 2.4.0
388
+ rubygems_version: 2.2.2
389
389
  signing_key:
390
390
  specification_version: 4
391
391
  summary: Contains all shared code/dependencies of the fastlane.tools