gym 1.11.0 → 1.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/assets/wrap_xcodebuild/xcbuild-safe.sh +11 -20
- data/lib/gym/version.rb +1 -1
- metadata +27 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa40ab1e6c3b83abae8ad6a00bb3e918316f489a
|
4
|
+
data.tar.gz: 83dee506e0ec64d5e7b0199b0dd54fc39ab3be87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d561a6ab3769ca0591d96c40dc6a332b664109b1084ef8e2188771e75258f5a56e5ea6db906e40e21394910e0a3e1bb5524e76a7000a17f6861d85d374a99cc
|
7
|
+
data.tar.gz: a3c5ea402f64c21d40c4ac8257ea5ba9fc1d071260a855a7c6c062b3badbdba7576b0ffc72711b9e066fb2aaf38501915975ae97ac7569b47114a1212f3c2357
|
@@ -4,8 +4,8 @@
|
|
4
4
|
# Modified to work in RVM and non RVM environments
|
5
5
|
#
|
6
6
|
# Xcode 7 (incl. 7.0.1) seems to have a dependency on the system ruby.
|
7
|
-
# xcodebuild
|
8
|
-
# ruby
|
7
|
+
# xcodebuild has issues by using rvm to map to another non-system
|
8
|
+
# ruby. This script is a fix that allows you call xcodebuild in a
|
9
9
|
# "safe" rvm environment, but will not (AFAIK) affect the "external"
|
10
10
|
# rvm setting.
|
11
11
|
#
|
@@ -17,12 +17,10 @@
|
|
17
17
|
#
|
18
18
|
# path/to/xcbuild-safe.sh arg1 ... argn
|
19
19
|
#
|
20
|
+
# More information available here: https://github.com/fastlane/fastlane/issues/6495
|
20
21
|
# -----
|
21
|
-
# † Because, you know, that *never* happens when you are building
|
22
|
-
# Xcode projects, say with abstruse tools like Rake or CocoaPods.
|
23
22
|
|
24
23
|
which rvm > /dev/null
|
25
|
-
|
26
24
|
if [[ $? -eq 0 ]]; then
|
27
25
|
echo "RVM detected, forcing to use system ruby"
|
28
26
|
# This allows you to use rvm in a script. Otherwise you get a BS
|
@@ -32,13 +30,6 @@ if [[ $? -eq 0 ]]; then
|
|
32
30
|
# Cause rvm to use system ruby. AFAIK, this is effective only for
|
33
31
|
# the scope of this script.
|
34
32
|
rvm use system
|
35
|
-
|
36
|
-
# rvm doesn't unset itself properly without doing this
|
37
|
-
unset RUBYLIB
|
38
|
-
unset RUBYOPT
|
39
|
-
unset BUNDLE_BIN_PATH
|
40
|
-
unset _ORIGINAL_GEM_PATH
|
41
|
-
unset BUNDLE_GEMFILE
|
42
33
|
fi
|
43
34
|
|
44
35
|
if which rbenv > /dev/null; then
|
@@ -48,18 +39,18 @@ if which rbenv > /dev/null; then
|
|
48
39
|
# session which will normally just be this script.
|
49
40
|
rbenv shell system
|
50
41
|
|
51
|
-
unset RUBYLIB
|
52
|
-
unset RUBYOPT
|
53
|
-
unset _ORIGINAL_GEM_PATH
|
54
|
-
unset BUNDLE_BIN_PATH
|
55
|
-
unset BUNDLE_GEMFILE
|
56
42
|
unset GEM_HOME
|
57
43
|
unset GEM_PATH
|
58
44
|
fi
|
59
45
|
|
60
|
-
# to
|
61
|
-
#
|
62
|
-
# rvm
|
46
|
+
# Since Xcode has a dependency to 2 external gems: sqlite and CFPropertyList
|
47
|
+
# More information https://github.com/fastlane/fastlane/issues/6495
|
48
|
+
# We have to unset those variables for rbenv, rvm and when the user uses bundler
|
49
|
+
unset RUBYLIB
|
50
|
+
unset RUBYOPT
|
51
|
+
unset BUNDLE_BIN_PATH
|
52
|
+
unset _ORIGINAL_GEM_PATH
|
53
|
+
unset BUNDLE_GEMFILE
|
63
54
|
|
64
55
|
set -x # echoes commands
|
65
56
|
xcodebuild "$@" # calls xcodebuild with all the arguments passed to this
|
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.11.
|
4
|
+
version: 1.11.1
|
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-10-
|
11
|
+
date: 2016-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|
@@ -36,42 +36,60 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - ">="
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 0.2.
|
39
|
+
version: 0.2.4
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 1.0.0
|
40
43
|
type: :runtime
|
41
44
|
prerelease: false
|
42
45
|
version_requirements: !ruby/object:Gem::Requirement
|
43
46
|
requirements:
|
44
47
|
- - ">="
|
45
48
|
- !ruby/object:Gem::Version
|
46
|
-
version: 0.2.
|
49
|
+
version: 0.2.4
|
50
|
+
- - "<"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 1.0.0
|
47
53
|
- !ruby/object:Gem::Dependency
|
48
54
|
name: terminal-table
|
49
55
|
requirement: !ruby/object:Gem::Requirement
|
50
56
|
requirements:
|
51
57
|
- - ">="
|
52
58
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
59
|
+
version: 1.4.5
|
60
|
+
- - "<"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 2.0.0
|
54
63
|
type: :runtime
|
55
64
|
prerelease: false
|
56
65
|
version_requirements: !ruby/object:Gem::Requirement
|
57
66
|
requirements:
|
58
67
|
- - ">="
|
59
68
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
69
|
+
version: 1.4.5
|
70
|
+
- - "<"
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 2.0.0
|
61
73
|
- !ruby/object:Gem::Dependency
|
62
74
|
name: plist
|
63
75
|
requirement: !ruby/object:Gem::Requirement
|
64
76
|
requirements:
|
65
77
|
- - ">="
|
66
78
|
- !ruby/object:Gem::Version
|
67
|
-
version:
|
79
|
+
version: 3.1.0
|
80
|
+
- - "<"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 4.0.0
|
68
83
|
type: :runtime
|
69
84
|
prerelease: false
|
70
85
|
version_requirements: !ruby/object:Gem::Requirement
|
71
86
|
requirements:
|
72
87
|
- - ">="
|
73
88
|
- !ruby/object:Gem::Version
|
74
|
-
version:
|
89
|
+
version: 3.1.0
|
90
|
+
- - "<"
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 4.0.0
|
75
93
|
- !ruby/object:Gem::Dependency
|
76
94
|
name: rubyzip
|
77
95
|
requirement: !ruby/object:Gem::Requirement
|
@@ -284,7 +302,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
284
302
|
version: '0'
|
285
303
|
requirements: []
|
286
304
|
rubyforge_project:
|
287
|
-
rubygems_version: 2.6.
|
305
|
+
rubygems_version: 2.6.7
|
288
306
|
signing_key:
|
289
307
|
specification_version: 4
|
290
308
|
summary: Building your iOS apps has never been easier
|