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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2cac6ec8b565847026d2e5c35c1e6cad0eabaa43
4
- data.tar.gz: 800b392090f91e1c33023c42749568816af10d89
3
+ metadata.gz: 54d7ab1b658d7e2ee0ab96d6ebeeab3826fe64a3
4
+ data.tar.gz: 493f5df1af768786f6332933b0119a52a8aa22f8
5
5
  SHA512:
6
- metadata.gz: f017c841409209a2db95a19b591aa1e729c1d8ee8ded8ffe4288460babb60e9f6d478c6ac8176ead89fe406ab1d40a105666740c5c48180f1da8fe56049ba850
7
- data.tar.gz: b0f5307aa14c992f5990287cd31cb6f142537d5aa2db837cdb9e76c18243e3e8abe26517574173413189e9d0f48e21b17d9a3f5280761e84fb11d8cf64900ce6
6
+ metadata.gz: 8ea4078d9099a547cd54ce2add1cfc7d0baaec8da1b928a8f783f4df79f5b594a0499f59426be2182f751186b3d73cea4668b66094c1ddd5a99ab56097bd0a9b
7
+ data.tar.gz: c53cdd8e1141ae2affaa2146afebe5694c6937cbabea654b917a3f3bf67442dc8eedca0a2ef2f3dbabdebf3e585188a1e790cb7e4348023ed87fdd14096a3c65
@@ -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
- File.join(self.xcode_path, '../Applications/Application\ Loader.app/Contents/MacOS/itms/bin/iTMSTransporter')
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?
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.4.2"
2
+ VERSION = "0.4.3.pre"
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.4.2
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-02 00:00:00.000000000 Z
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: '0'
307
+ version: 1.3.1
308
308
  requirements: []
309
309
  rubyforge_project:
310
310
  rubygems_version: 2.2.2