fastlane_core 0.4.2 → 0.4.3.pre
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 +8 -1
- data/lib/fastlane_core/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54d7ab1b658d7e2ee0ab96d6ebeeab3826fe64a3
|
4
|
+
data.tar.gz: 493f5df1af768786f6332933b0119a52a8aa22f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ea4078d9099a547cd54ce2add1cfc7d0baaec8da1b928a8f783f4df79f5b594a0499f59426be2182f751186b3d73cea4668b66094c1ddd5a99ab56097bd0a9b
|
7
|
+
data.tar.gz: c53cdd8e1141ae2affaa2146afebe5694c6937cbabea654b917a3f3bf67442dc8eedca0a2ef2f3dbabdebf3e585188a1e790cb7e4348023ed87fdd14096a3c65
|
data/lib/fastlane_core/helper.rb
CHANGED
@@ -68,7 +68,14 @@ module FastlaneCore
|
|
68
68
|
|
69
69
|
# @return the full path to the iTMSTransporter executable
|
70
70
|
def self.transporter_path
|
71
|
-
|
71
|
+
[
|
72
|
+
"../Applications/Application\ Loader.app/Contents/MacOS/itms/bin/iTMSTransporter",
|
73
|
+
"../Applications/Application\ Loader.app/Contents/itms/bin/iTMSTransporter"
|
74
|
+
].each do |path|
|
75
|
+
result = File.join(self.xcode_path, path)
|
76
|
+
return result if File.exists?(result)
|
77
|
+
end
|
78
|
+
raise "Could not find transporter at #{self.xcode_path}. Please make sure you set the correct path to your Xcode installation.".red
|
72
79
|
end
|
73
80
|
|
74
81
|
def self.fastlane_enabled?
|
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.4.
|
4
|
+
version: 0.4.3.pre
|
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-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -302,9 +302,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
302
302
|
version: 2.0.0
|
303
303
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
304
304
|
requirements:
|
305
|
-
- - '
|
305
|
+
- - '>'
|
306
306
|
- !ruby/object:Gem::Version
|
307
|
-
version:
|
307
|
+
version: 1.3.1
|
308
308
|
requirements: []
|
309
309
|
rubyforge_project:
|
310
310
|
rubygems_version: 2.2.2
|