gym 1.1.1 → 1.1.2

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: 79dfb8579a4f43b6ab8165bcf93500cfbdd9b723
4
- data.tar.gz: 2884e57d8f64a74a5a0e2081fb29e2e7714b8b93
3
+ metadata.gz: 6944cfb80160f5506beeb4ff366aa1b4a5976655
4
+ data.tar.gz: aa317a2d17227d81386f49292403694bafecd09c
5
5
  SHA512:
6
- metadata.gz: d429220279d8c699e0b67c223dc03feb8f2892c0d65ed633e191b0e7bf511f4aeb654d8b2b3a4af58077f57495111fd3e4f69fcdfd639d17304c9d315e5e0389
7
- data.tar.gz: e4080f1eae5197c6686208235bbee8f66ea048f02d350f655a3622abe3a749952913f30752cc80535af3da5b192ec72c25cf21230de419cbe02be10fcbd2265e
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
@@ -1,4 +1,4 @@
1
1
  module Gym
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
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.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-27 00:00:00.000000000 Z
11
+ date: 2015-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core