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 +4 -4
- data/lib/fastlane_core/helper.rb +7 -0
- data/lib/fastlane_core/itunes_transporter.rb +1 -1
- data/lib/fastlane_core/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfeea37314ad8f63138999f66705d5acc9f78e77
|
4
|
+
data.tar.gz: 46686b11d49c42a1f59daab21cf96aa39e0b41ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca5035d733f284d0d6207a63cf13ae3f8852c650f1c5ebec08fa19c19656ea1cb7e1ec44242a561479da4bce11494865c6389542563b60f2323d17433275442e
|
7
|
+
data.tar.gz: 79faeefaeef0bd72fbf7079a12c2f6bb24754a0ab2e6c6bede7f173a6b84a6da7d42ca4f6fe2cdda249995d297a1caaec50be520b6de976b709b2894e999218a
|
data/lib/fastlane_core/helper.rb
CHANGED
@@ -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
|
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.
|
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-
|
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.
|
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
|