gym 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/gym/runner.rb +3 -4
- data/lib/gym/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6944cfb80160f5506beeb4ff366aa1b4a5976655
|
|
4
|
+
data.tar.gz: aa317a2d17227d81386f49292403694bafecd09c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0dcf0952065c72736b18ea708eafc30e4b4d7733c128e2f76524bfc7fae4f9b4397b861c4297b526e054a3f90eab4ec4de5db4a510af2cf230e530adf6f9084
|
|
7
|
+
data.tar.gz: 7ad031aafc560c4e804a674c949169a9c8d782b0909f478f741505f1746f7915aea921411ba73a10ffea4f75f40bb3389c36dcc5e0696983296e82405c1ddc50
|
data/lib/gym/runner.rb
CHANGED
|
@@ -124,9 +124,8 @@ module Gym
|
|
|
124
124
|
# Moves over the binary and dsym file to the output directory
|
|
125
125
|
# @return (String) The path to the resulting ipa file
|
|
126
126
|
def move_ipa
|
|
127
|
-
FileUtils.mv(PackageCommandGenerator.ipa_path, Gym.config[:output_directory], force: true)
|
|
128
|
-
|
|
129
|
-
ipa_path = File.join(Gym.config[:output_directory], File.basename(PackageCommandGenerator.ipa_path))
|
|
127
|
+
FileUtils.mv(PackageCommandGenerator.ipa_path, File.expand_path(Gym.config[:output_directory]), force: true)
|
|
128
|
+
ipa_path = File.expand_path(File.join(Gym.config[:output_directory], File.basename(PackageCommandGenerator.ipa_path)))
|
|
130
129
|
|
|
131
130
|
Helper.log.info "Successfully exported and signed the ipa file:".green
|
|
132
131
|
Helper.log.info ipa_path
|
|
@@ -138,7 +137,7 @@ module Gym
|
|
|
138
137
|
app_path = Dir[File.join(BuildCommandGenerator.archive_path, "Products/Applications/*.app")].last
|
|
139
138
|
raise "Couldn't find application in '#{BuildCommandGenerator.archive_path}'".red unless app_path
|
|
140
139
|
|
|
141
|
-
FileUtils.mv(app_path, Gym.config[:output_directory], force: true)
|
|
140
|
+
FileUtils.mv(app_path, File.expand_path(Gym.config[:output_directory]), force: true)
|
|
142
141
|
app_path = File.join(Gym.config[:output_directory], File.basename(app_path))
|
|
143
142
|
|
|
144
143
|
Helper.log.info "Successfully exported the .app file:".green
|
data/lib/gym/version.rb
CHANGED
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.1.
|
|
4
|
+
version: 1.1.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: 2015-10-
|
|
11
|
+
date: 2015-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|