gym 1.8.0 → 1.9.0

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: 590508ca78d6b207af7e7c309199a22a1d53064d
4
- data.tar.gz: c98dd273ef0aea8914568bc655998415ee1fbe28
3
+ metadata.gz: d221c7d18ac3da987d935bd33a9f685fa21250e9
4
+ data.tar.gz: c8d03871cc23bd4fbcb58b092979264c95b95e0b
5
5
  SHA512:
6
- metadata.gz: afb5c65b4055fe1f08bd5fef2263a15bad603d1cfda84fb69a0466f353f6d7144cd9d27d5e551937a8cc7c49cf636b41da60305d617998b282b7699a023fd4ba
7
- data.tar.gz: 994c7872045e8af70d6d7b507e1ada9741e3c5a525dae10938bf297887299082a40365248b67fe8c55b08fbe8e283ebde0e63371d9e61822b356b692753f64f1
6
+ metadata.gz: d1f37af43070d1db4a862028dc27728a62d6a3b57886ecea31619ac844974c2240c64f38f50f265099db204f417809a6d4a26ba88325758b1791c217fd49ae9e
7
+ data.tar.gz: 5d4752fc721f9b0783a138a6958f7698462118670f390a01ced7a45411c707bca990f4d96b1a116e28b3b3f3baf42fb28feb4bddd4d3fb4cec9ef01d2fd9d172
@@ -38,7 +38,7 @@ module Gym
38
38
  options << "-toolchain '#{config[:toolchain]}'" if config[:toolchain]
39
39
  options << "-destination '#{config[:destination]}'" if config[:destination]
40
40
  options << "-xcconfig '#{config[:xcconfig]}'" if config[:xcconfig]
41
- options << "-archivePath '#{archive_path}'"
41
+ options << "-archivePath #{archive_path.shellescape}"
42
42
  options << "-derivedDataPath '#{config[:derived_data_path]}'" if config[:derived_data_path]
43
43
  options << "-resultBundlePath '#{result_bundle_path}'" if config[:result_bundle]
44
44
  options << config[:xcargs] if config[:xcargs]
@@ -25,7 +25,7 @@ module Gym
25
25
  options = []
26
26
 
27
27
  options << "-exportOptionsPlist '#{config_path}'"
28
- options << "-archivePath '#{BuildCommandGenerator.archive_path}'"
28
+ options << "-archivePath #{BuildCommandGenerator.archive_path.shellescape}"
29
29
  options << "-exportPath '#{temporary_output_path}'"
30
30
 
31
31
  if Gym.config[:toolchain]
@@ -64,6 +64,7 @@ module Gym
64
64
  optional: true,
65
65
  verify_block: proc do |value|
66
66
  value.gsub!(".ipa", "")
67
+ value.gsub!(File::SEPARATOR, "_")
67
68
  end),
68
69
  FastlaneCore::ConfigItem.new(key: :configuration,
69
70
  short_option: "-q",
@@ -13,7 +13,7 @@ module Gym
13
13
  end
14
14
  verify_archive
15
15
 
16
- FileUtils.mkdir_p(Gym.config[:output_directory])
16
+ FileUtils.mkdir_p(File.expand_path(Gym.config[:output_directory]))
17
17
 
18
18
  if Gym.project.ios? || Gym.project.tvos?
19
19
  fix_generic_archive # See https://github.com/fastlane/fastlane/pull/4325
@@ -1,4 +1,4 @@
1
1
  module Gym
2
- VERSION = "1.8.0"
2
+ VERSION = "1.9.0"
3
3
  DESCRIPTION = "Building your iOS apps has never been easier"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gym
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.0
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-08-29 00:00:00.000000000 Z
11
+ date: 2016-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.50.0
19
+ version: 0.51.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 1.0.0
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.50.0
29
+ version: 0.51.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.0.0
@@ -284,7 +284,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
284
284
  version: '0'
285
285
  requirements: []
286
286
  rubyforge_project:
287
- rubygems_version: 2.2.2
287
+ rubygems_version: 2.4.5.1
288
288
  signing_key:
289
289
  specification_version: 4
290
290
  summary: Building your iOS apps has never been easier