u3d 1.1.5 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github_changelog_generator +1 -1
- data/CHANGELOG.md +34 -0
- data/DEVELOPMENT_PROCESS.md +2 -2
- data/Gemfile.lock +5 -3
- data/README.md +8 -0
- data/Rakefile +1 -0
- data/build.sh +0 -0
- data/examples/Example1/Gemfile.lock +56 -45
- data/examples/Example2/Gemfile.lock +56 -45
- data/lib/u3d.rb +3 -1
- data/lib/u3d/commands.rb +68 -27
- data/lib/u3d/download_validator.rb +9 -9
- data/lib/u3d/downloader.rb +18 -8
- data/lib/u3d/hub_modules_parser.rb +88 -0
- data/lib/u3d/{iniparser.rb → ini_modules_parser.rb} +38 -9
- data/lib/u3d/installation.rb +29 -3
- data/lib/u3d/installer.rb +132 -34
- data/lib/u3d/log_analyzer.rb +1 -1
- data/lib/u3d/unity_module.rb +145 -0
- data/lib/u3d/unity_version_definition.rb +23 -19
- data/lib/u3d/unity_versions.rb +24 -5
- data/lib/u3d/utils.rb +23 -0
- data/lib/u3d/version.rb +1 -1
- data/lib/u3d_core/ui/implementations/shell.rb +6 -1
- data/lib/u3d_core/ui/ui.rb +2 -0
- data/u3d.gemspec +1 -0
- metadata +26 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 31a6b0252dfed1478b24be075273f8b22288ba7bd4913a582551a60cf2c10377
|
4
|
+
data.tar.gz: c00347386b3112bb59dbd07d6f322b9ec0daf9588f8a791c5cc40a4e6d9c5994
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 036eafe03659e2b55745341b2c1a67251844afeef95e7323139db091244d68c71489caffb168b35f234dcd46761cb904960b17890408e0bfaf79ffa138186c7a
|
7
|
+
data.tar.gz: 24df174d402059a053d12aba17aa5d45ddeac90ebd71d1441e1b85bef73864ca918dca2ecf976ab25655b0ca9e7b42da0a0cf7e9eea0286a714fde3a83e6e569
|
data/.github_changelog_generator
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,39 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v1.2.0](https://github.com/DragonBox/u3d/tree/v1.2.0) (2019-11-15)
|
4
|
+
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.5...v1.2.0)
|
5
|
+
|
6
|
+
**Implemented enhancements:**
|
7
|
+
|
8
|
+
- 2019.x Android package: Install SDK & NDK Tools [\#359](https://github.com/DragonBox/u3d/issues/359)
|
9
|
+
- u3d/installer: Enable the download/installation of modules from Unity Hub [\#375](https://github.com/DragonBox/u3d/pull/375) ([niezbop](https://github.com/niezbop))
|
10
|
+
|
11
|
+
**Fixed bugs:**
|
12
|
+
|
13
|
+
- installation\_path parameter problems [\#371](https://github.com/DragonBox/u3d/issues/371)
|
14
|
+
- u3d list command does not work in non-standard path [\#370](https://github.com/DragonBox/u3d/issues/370)
|
15
|
+
- New linux versions are not visible in u3d [\#369](https://github.com/DragonBox/u3d/issues/369)
|
16
|
+
- I can't execute commands if I have an alpha version installed [\#354](https://github.com/DragonBox/u3d/issues/354)
|
17
|
+
- Cannot start u3d within a working directory which path contains special characters. [\#352](https://github.com/DragonBox/u3d/issues/352)
|
18
|
+
- u3d/installation: fix the version retrieving for Windows on Unity 2019.2.x and onwards [\#374](https://github.com/DragonBox/u3d/pull/374) ([niezbop](https://github.com/niezbop))
|
19
|
+
- u3d/installer: support custom install paths through U3D\_EXTRA\_PATHS [\#373](https://github.com/DragonBox/u3d/pull/373) ([niezbop](https://github.com/niezbop))
|
20
|
+
- Use the VersionsFetcher with Unity's json on Linux as well [\#364](https://github.com/DragonBox/u3d/pull/364) ([niezbop](https://github.com/niezbop))
|
21
|
+
|
22
|
+
**Closed issues:**
|
23
|
+
|
24
|
+
- unity 2019.2.x on windows [\#367](https://github.com/DragonBox/u3d/issues/367)
|
25
|
+
- When using prettifier, have an option to write the raw log to file in case we need it [\#365](https://github.com/DragonBox/u3d/issues/365)
|
26
|
+
- u3d can't list all available versions for Linux [\#360](https://github.com/DragonBox/u3d/issues/360)
|
27
|
+
- Empty ini files prevent Unity installation [\#356](https://github.com/DragonBox/u3d/issues/356)
|
28
|
+
|
29
|
+
**Merged pull requests:**
|
30
|
+
|
31
|
+
- Bump ruby dependencies in examples to get rid of CVEs [\#372](https://github.com/DragonBox/u3d/pull/372) ([lacostej](https://github.com/lacostej))
|
32
|
+
- Prevent empty ini files from being created and ignore them \(fixes \#356\) [\#361](https://github.com/DragonBox/u3d/pull/361) ([lacostej](https://github.com/lacostej))
|
33
|
+
- u3d/internals: add a quote around active rule name with loggin parsing failures [\#358](https://github.com/DragonBox/u3d/pull/358) ([lacostej](https://github.com/lacostej))
|
34
|
+
- u3d/internals: prepare for adding a test suite for the prettifier. Supports \#119 [\#355](https://github.com/DragonBox/u3d/pull/355) ([lacostej](https://github.com/lacostej))
|
35
|
+
- u3d/internals: support accentuated characters in Windows Local App Data path. Fixes \#352 [\#353](https://github.com/DragonBox/u3d/pull/353) ([lacostej](https://github.com/lacostej))
|
36
|
+
|
3
37
|
## [v1.1.5](https://github.com/DragonBox/u3d/tree/v1.1.5) (2019-03-06)
|
4
38
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.4...v1.1.5)
|
5
39
|
|
data/DEVELOPMENT_PROCESS.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
u3d (1.
|
4
|
+
u3d (1.2.0)
|
5
5
|
colored (>= 1.2, < 2.0.0)
|
6
6
|
commander (>= 4.4.0, < 5.0.0)
|
7
7
|
file-tail (>= 1.2.0)
|
8
8
|
filesize (>= 0.1.1)
|
9
9
|
inifile (>= 3.0.0, < 4.0.0)
|
10
10
|
plist (>= 3.1.0, < 4.0.0)
|
11
|
+
rubyzip (>= 2.0.0, < 3.0.0)
|
11
12
|
security (= 0.1.3)
|
12
13
|
|
13
14
|
GEM
|
@@ -51,7 +52,7 @@ GEM
|
|
51
52
|
rainbow (>= 2.1)
|
52
53
|
rake (>= 10.0)
|
53
54
|
retriable (~> 2.1)
|
54
|
-
highline (2.0.
|
55
|
+
highline (2.0.3)
|
55
56
|
i18n (0.8.6)
|
56
57
|
inifile (3.0.0)
|
57
58
|
json (2.1.0)
|
@@ -99,6 +100,7 @@ GEM
|
|
99
100
|
ruby-progressbar (~> 1.7)
|
100
101
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
101
102
|
ruby-progressbar (1.9.0)
|
103
|
+
rubyzip (2.0.0)
|
102
104
|
sawyer (0.8.1)
|
103
105
|
addressable (>= 2.3.5, < 2.6)
|
104
106
|
faraday (~> 0.8, < 1.0)
|
@@ -134,4 +136,4 @@ DEPENDENCIES
|
|
134
136
|
u3d!
|
135
137
|
|
136
138
|
BUNDLED WITH
|
137
|
-
1.17.
|
139
|
+
1.17.2
|
data/README.md
CHANGED
@@ -186,6 +186,14 @@ You can get further information on how to use U3d by running `u3d --help` (or `u
|
|
186
186
|
|
187
187
|
## How-tos
|
188
188
|
|
189
|
+
### Install in a custom location
|
190
|
+
|
191
|
+
`u3d install` accepts an argument `--installation_path` which can install unity and its additional components to the location you want.
|
192
|
+
|
193
|
+
However, there is a pitfall to that: you need to tell u3d where to look for the versions you installed in custom location. Doing so is quite easy, you just have to set the `U3D_EXTRA_PATHS`, to a list of paths that you want u3d to look for versions.
|
194
|
+
|
195
|
+
_NOTE:_ The list of paths `U3D_EXTRA_PATHS` is formatted as your standard `PATH`, ie `U3D_EXTRA_PATHS=/path/to/something:/another/path` on Unix systems, and `U3D_EXTRA_PATHS=C:\Path\To\Something;E:\Another\Path` on Windows.
|
196
|
+
|
189
197
|
### Run several Unity instances in parallel
|
190
198
|
|
191
199
|
The only thing you have to watch for while trying to run multiple instances of Unity in parallel is the fact that they will share the same log file by default (the `Editor.log`). Therefore you will have to specify it using the [command line arguments](https://docs.unity3d.com/Manual/CommandLineArguments.html), you can do so with u3d the following way from each of your project root folder:
|
data/Rakefile
CHANGED
@@ -187,6 +187,7 @@ end
|
|
187
187
|
|
188
188
|
desc 'Update the changelog, no commit made'
|
189
189
|
task :changelog do
|
190
|
+
UI.user_error!('No CHANGELOG_GITHUB_TOKEN in the environment') unless ENV.key? 'CHANGELOG_GITHUB_TOKEN'
|
190
191
|
puts "Updating changelog #{ENV['CHANGELOG_GITHUB_TOKEN']}"
|
191
192
|
sh "github_changelog_generator" if ENV['CHANGELOG_GITHUB_TOKEN']
|
192
193
|
end
|
data/build.sh
CHANGED
File without changes
|
@@ -7,7 +7,7 @@ PATH
|
|
7
7
|
PATH
|
8
8
|
remote: /Users/lacostej/Code/OSS/u3d
|
9
9
|
specs:
|
10
|
-
u3d (1.1.
|
10
|
+
u3d (1.1.6)
|
11
11
|
colored (>= 1.2, < 2.0.0)
|
12
12
|
commander (>= 4.4.0, < 5.0.0)
|
13
13
|
file-tail (>= 1.2.0)
|
@@ -19,12 +19,12 @@ PATH
|
|
19
19
|
GEM
|
20
20
|
remote: https://rubygems.org/
|
21
21
|
specs:
|
22
|
-
CFPropertyList (3.0.
|
23
|
-
addressable (2.
|
24
|
-
public_suffix (>= 2.0.2, <
|
22
|
+
CFPropertyList (3.0.1)
|
23
|
+
addressable (2.7.0)
|
24
|
+
public_suffix (>= 2.0.2, < 5.0)
|
25
25
|
atomos (0.1.3)
|
26
|
-
babosa (1.0.
|
27
|
-
claide (1.0.
|
26
|
+
babosa (1.0.3)
|
27
|
+
claide (1.0.3)
|
28
28
|
colored (1.2)
|
29
29
|
colored2 (3.1.2)
|
30
30
|
commander (4.4.6)
|
@@ -33,53 +33,55 @@ GEM
|
|
33
33
|
highline (~> 1.7.2)
|
34
34
|
declarative (0.0.10)
|
35
35
|
declarative-option (0.1.0)
|
36
|
-
|
36
|
+
digest-crc (0.4.1)
|
37
|
+
domain_name (0.5.20190701)
|
37
38
|
unf (>= 0.0.5, < 1.0.0)
|
38
|
-
dotenv (2.5
|
39
|
-
emoji_regex (0.1
|
40
|
-
excon (0.
|
41
|
-
faraday (0.
|
39
|
+
dotenv (2.7.5)
|
40
|
+
emoji_regex (1.0.1)
|
41
|
+
excon (0.68.0)
|
42
|
+
faraday (0.17.0)
|
42
43
|
multipart-post (>= 1.2, < 3)
|
43
44
|
faraday-cookie_jar (0.0.6)
|
44
45
|
faraday (>= 0.7.4)
|
45
46
|
http-cookie (~> 1.0.0)
|
46
|
-
faraday_middleware (0.
|
47
|
+
faraday_middleware (0.13.1)
|
47
48
|
faraday (>= 0.7.4, < 1.0)
|
48
|
-
fastimage (2.1.
|
49
|
-
fastlane (2.
|
49
|
+
fastimage (2.1.7)
|
50
|
+
fastlane (2.134.0)
|
50
51
|
CFPropertyList (>= 2.3, < 4.0.0)
|
51
52
|
addressable (>= 2.3, < 3.0.0)
|
52
53
|
babosa (>= 1.0.2, < 2.0.0)
|
53
|
-
bundler (>= 1.12.0, <
|
54
|
+
bundler (>= 1.12.0, < 3.0.0)
|
54
55
|
colored
|
55
56
|
commander-fastlane (>= 4.4.6, < 5.0.0)
|
56
57
|
dotenv (>= 2.1.1, < 3.0.0)
|
57
|
-
emoji_regex (
|
58
|
+
emoji_regex (>= 0.1, < 2.0)
|
58
59
|
excon (>= 0.45.0, < 1.0.0)
|
59
|
-
faraday (~> 0.
|
60
|
+
faraday (~> 0.17)
|
60
61
|
faraday-cookie_jar (~> 0.0.6)
|
61
|
-
faraday_middleware (~> 0.
|
62
|
+
faraday_middleware (~> 0.13.1)
|
62
63
|
fastimage (>= 2.1.0, < 3.0.0)
|
63
64
|
gh_inspector (>= 1.1.2, < 2.0.0)
|
64
65
|
google-api-client (>= 0.21.2, < 0.24.0)
|
66
|
+
google-cloud-storage (>= 1.15.0, < 2.0.0)
|
65
67
|
highline (>= 1.7.2, < 2.0.0)
|
66
68
|
json (< 3.0.0)
|
67
|
-
|
68
|
-
|
69
|
+
jwt (~> 2.1.0)
|
70
|
+
mini_magick (>= 4.9.4, < 5.0.0)
|
69
71
|
multi_xml (~> 0.5)
|
70
72
|
multipart-post (~> 2.0.0)
|
71
73
|
plist (>= 3.1.0, < 4.0.0)
|
72
74
|
public_suffix (~> 2.0.0)
|
73
|
-
rubyzip (>= 1.
|
75
|
+
rubyzip (>= 1.3.0, < 2.0.0)
|
74
76
|
security (= 0.1.3)
|
75
77
|
simctl (~> 1.6.3)
|
76
78
|
slack-notifier (>= 2.0.0, < 3.0.0)
|
77
|
-
terminal-notifier (>=
|
79
|
+
terminal-notifier (>= 2.0.0, < 3.0.0)
|
78
80
|
terminal-table (>= 1.4.5, < 2.0.0)
|
79
81
|
tty-screen (>= 0.6.3, < 1.0.0)
|
80
82
|
tty-spinner (>= 0.8.0, < 1.0.0)
|
81
83
|
word_wrap (~> 1.0.0)
|
82
|
-
xcodeproj (>= 1.
|
84
|
+
xcodeproj (>= 1.8.1, < 2.0.0)
|
83
85
|
xcpretty (~> 0.3.0)
|
84
86
|
xcpretty-travis-formatter (>= 0.0.3)
|
85
87
|
file-tail (1.2.0)
|
@@ -94,10 +96,19 @@ GEM
|
|
94
96
|
representable (~> 3.0)
|
95
97
|
retriable (>= 2.0, < 4.0)
|
96
98
|
signet (~> 0.9)
|
97
|
-
|
99
|
+
google-cloud-core (1.4.1)
|
100
|
+
google-cloud-env (~> 1.0)
|
101
|
+
google-cloud-env (1.3.0)
|
102
|
+
faraday (~> 0.11)
|
103
|
+
google-cloud-storage (1.16.0)
|
104
|
+
digest-crc (~> 0.4)
|
105
|
+
google-api-client (~> 0.23)
|
106
|
+
google-cloud-core (~> 1.2)
|
107
|
+
googleauth (>= 0.6.2, < 0.10.0)
|
108
|
+
googleauth (0.6.7)
|
98
109
|
faraday (~> 0.12)
|
99
110
|
jwt (>= 1.4, < 3.0)
|
100
|
-
memoist (~> 0.
|
111
|
+
memoist (~> 0.16)
|
101
112
|
multi_json (~> 1.11)
|
102
113
|
os (>= 0.9, < 2.0)
|
103
114
|
signet (~> 0.7)
|
@@ -106,20 +117,20 @@ GEM
|
|
106
117
|
domain_name (~> 0.5)
|
107
118
|
httpclient (2.8.3)
|
108
119
|
inifile (3.0.0)
|
109
|
-
json (2.
|
120
|
+
json (2.2.0)
|
110
121
|
jwt (2.1.0)
|
111
122
|
memoist (0.16.0)
|
112
|
-
mime-types (3.
|
123
|
+
mime-types (3.3)
|
113
124
|
mime-types-data (~> 3.2015)
|
114
|
-
mime-types-data (3.
|
115
|
-
mini_magick (4.5
|
116
|
-
multi_json (1.
|
125
|
+
mime-types-data (3.2019.1009)
|
126
|
+
mini_magick (4.9.5)
|
127
|
+
multi_json (1.14.1)
|
117
128
|
multi_xml (0.6.0)
|
118
129
|
multipart-post (2.0.0)
|
119
130
|
nanaimo (0.2.6)
|
120
131
|
naturally (2.2.0)
|
121
|
-
os (1.0.
|
122
|
-
plist (3.
|
132
|
+
os (1.0.1)
|
133
|
+
plist (3.5.0)
|
123
134
|
public_suffix (2.0.5)
|
124
135
|
representable (3.0.4)
|
125
136
|
declarative (< 0.1.0)
|
@@ -127,32 +138,32 @@ GEM
|
|
127
138
|
uber (< 0.2.0)
|
128
139
|
retriable (3.1.2)
|
129
140
|
rouge (2.0.7)
|
130
|
-
rubyzip (1.
|
141
|
+
rubyzip (1.3.0)
|
131
142
|
security (0.1.3)
|
132
|
-
signet (0.
|
143
|
+
signet (0.12.0)
|
133
144
|
addressable (~> 2.3)
|
134
145
|
faraday (~> 0.9)
|
135
146
|
jwt (>= 1.5, < 3.0)
|
136
147
|
multi_json (~> 1.10)
|
137
|
-
simctl (1.6.
|
148
|
+
simctl (1.6.6)
|
138
149
|
CFPropertyList
|
139
150
|
naturally
|
140
151
|
slack-notifier (2.3.2)
|
141
|
-
terminal-notifier (
|
152
|
+
terminal-notifier (2.0.0)
|
142
153
|
terminal-table (1.8.0)
|
143
154
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
144
|
-
tins (1.
|
145
|
-
tty-cursor (0.
|
146
|
-
tty-screen (0.
|
147
|
-
tty-spinner (0.
|
148
|
-
tty-cursor (
|
155
|
+
tins (1.22.0)
|
156
|
+
tty-cursor (0.7.0)
|
157
|
+
tty-screen (0.7.0)
|
158
|
+
tty-spinner (0.9.1)
|
159
|
+
tty-cursor (~> 0.7)
|
149
160
|
uber (0.1.0)
|
150
161
|
unf (0.1.4)
|
151
162
|
unf_ext
|
152
|
-
unf_ext (0.0.7.
|
153
|
-
unicode-display_width (1.
|
163
|
+
unf_ext (0.0.7.6)
|
164
|
+
unicode-display_width (1.6.0)
|
154
165
|
word_wrap (1.0.0)
|
155
|
-
xcodeproj (1.
|
166
|
+
xcodeproj (1.13.0)
|
156
167
|
CFPropertyList (>= 2.3.3, < 4.0)
|
157
168
|
atomos (~> 0.1.3)
|
158
169
|
claide (>= 1.0.2, < 2.0)
|
@@ -172,4 +183,4 @@ DEPENDENCIES
|
|
172
183
|
u3d!
|
173
184
|
|
174
185
|
BUNDLED WITH
|
175
|
-
1.
|
186
|
+
1.17.1
|
@@ -7,7 +7,7 @@ PATH
|
|
7
7
|
PATH
|
8
8
|
remote: /Users/lacostej/Code/OSS/u3d
|
9
9
|
specs:
|
10
|
-
u3d (1.1.
|
10
|
+
u3d (1.1.6)
|
11
11
|
colored (>= 1.2, < 2.0.0)
|
12
12
|
commander (>= 4.4.0, < 5.0.0)
|
13
13
|
file-tail (>= 1.2.0)
|
@@ -19,12 +19,12 @@ PATH
|
|
19
19
|
GEM
|
20
20
|
remote: https://rubygems.org/
|
21
21
|
specs:
|
22
|
-
CFPropertyList (3.0.
|
23
|
-
addressable (2.
|
24
|
-
public_suffix (>= 2.0.2, <
|
22
|
+
CFPropertyList (3.0.1)
|
23
|
+
addressable (2.7.0)
|
24
|
+
public_suffix (>= 2.0.2, < 5.0)
|
25
25
|
atomos (0.1.3)
|
26
|
-
babosa (1.0.
|
27
|
-
claide (1.0.
|
26
|
+
babosa (1.0.3)
|
27
|
+
claide (1.0.3)
|
28
28
|
colored (1.2)
|
29
29
|
colored2 (3.1.2)
|
30
30
|
commander (4.4.6)
|
@@ -33,53 +33,55 @@ GEM
|
|
33
33
|
highline (~> 1.7.2)
|
34
34
|
declarative (0.0.10)
|
35
35
|
declarative-option (0.1.0)
|
36
|
-
|
36
|
+
digest-crc (0.4.1)
|
37
|
+
domain_name (0.5.20190701)
|
37
38
|
unf (>= 0.0.5, < 1.0.0)
|
38
|
-
dotenv (2.5
|
39
|
-
emoji_regex (0.1
|
40
|
-
excon (0.
|
41
|
-
faraday (0.
|
39
|
+
dotenv (2.7.5)
|
40
|
+
emoji_regex (1.0.1)
|
41
|
+
excon (0.68.0)
|
42
|
+
faraday (0.17.0)
|
42
43
|
multipart-post (>= 1.2, < 3)
|
43
44
|
faraday-cookie_jar (0.0.6)
|
44
45
|
faraday (>= 0.7.4)
|
45
46
|
http-cookie (~> 1.0.0)
|
46
|
-
faraday_middleware (0.
|
47
|
+
faraday_middleware (0.13.1)
|
47
48
|
faraday (>= 0.7.4, < 1.0)
|
48
|
-
fastimage (2.1.
|
49
|
-
fastlane (2.
|
49
|
+
fastimage (2.1.7)
|
50
|
+
fastlane (2.134.0)
|
50
51
|
CFPropertyList (>= 2.3, < 4.0.0)
|
51
52
|
addressable (>= 2.3, < 3.0.0)
|
52
53
|
babosa (>= 1.0.2, < 2.0.0)
|
53
|
-
bundler (>= 1.12.0, <
|
54
|
+
bundler (>= 1.12.0, < 3.0.0)
|
54
55
|
colored
|
55
56
|
commander-fastlane (>= 4.4.6, < 5.0.0)
|
56
57
|
dotenv (>= 2.1.1, < 3.0.0)
|
57
|
-
emoji_regex (
|
58
|
+
emoji_regex (>= 0.1, < 2.0)
|
58
59
|
excon (>= 0.45.0, < 1.0.0)
|
59
|
-
faraday (~> 0.
|
60
|
+
faraday (~> 0.17)
|
60
61
|
faraday-cookie_jar (~> 0.0.6)
|
61
|
-
faraday_middleware (~> 0.
|
62
|
+
faraday_middleware (~> 0.13.1)
|
62
63
|
fastimage (>= 2.1.0, < 3.0.0)
|
63
64
|
gh_inspector (>= 1.1.2, < 2.0.0)
|
64
65
|
google-api-client (>= 0.21.2, < 0.24.0)
|
66
|
+
google-cloud-storage (>= 1.15.0, < 2.0.0)
|
65
67
|
highline (>= 1.7.2, < 2.0.0)
|
66
68
|
json (< 3.0.0)
|
67
|
-
|
68
|
-
|
69
|
+
jwt (~> 2.1.0)
|
70
|
+
mini_magick (>= 4.9.4, < 5.0.0)
|
69
71
|
multi_xml (~> 0.5)
|
70
72
|
multipart-post (~> 2.0.0)
|
71
73
|
plist (>= 3.1.0, < 4.0.0)
|
72
74
|
public_suffix (~> 2.0.0)
|
73
|
-
rubyzip (>= 1.
|
75
|
+
rubyzip (>= 1.3.0, < 2.0.0)
|
74
76
|
security (= 0.1.3)
|
75
77
|
simctl (~> 1.6.3)
|
76
78
|
slack-notifier (>= 2.0.0, < 3.0.0)
|
77
|
-
terminal-notifier (>=
|
79
|
+
terminal-notifier (>= 2.0.0, < 3.0.0)
|
78
80
|
terminal-table (>= 1.4.5, < 2.0.0)
|
79
81
|
tty-screen (>= 0.6.3, < 1.0.0)
|
80
82
|
tty-spinner (>= 0.8.0, < 1.0.0)
|
81
83
|
word_wrap (~> 1.0.0)
|
82
|
-
xcodeproj (>= 1.
|
84
|
+
xcodeproj (>= 1.8.1, < 2.0.0)
|
83
85
|
xcpretty (~> 0.3.0)
|
84
86
|
xcpretty-travis-formatter (>= 0.0.3)
|
85
87
|
file-tail (1.2.0)
|
@@ -94,10 +96,19 @@ GEM
|
|
94
96
|
representable (~> 3.0)
|
95
97
|
retriable (>= 2.0, < 4.0)
|
96
98
|
signet (~> 0.9)
|
97
|
-
|
99
|
+
google-cloud-core (1.4.1)
|
100
|
+
google-cloud-env (~> 1.0)
|
101
|
+
google-cloud-env (1.3.0)
|
102
|
+
faraday (~> 0.11)
|
103
|
+
google-cloud-storage (1.16.0)
|
104
|
+
digest-crc (~> 0.4)
|
105
|
+
google-api-client (~> 0.23)
|
106
|
+
google-cloud-core (~> 1.2)
|
107
|
+
googleauth (>= 0.6.2, < 0.10.0)
|
108
|
+
googleauth (0.6.7)
|
98
109
|
faraday (~> 0.12)
|
99
110
|
jwt (>= 1.4, < 3.0)
|
100
|
-
memoist (~> 0.
|
111
|
+
memoist (~> 0.16)
|
101
112
|
multi_json (~> 1.11)
|
102
113
|
os (>= 0.9, < 2.0)
|
103
114
|
signet (~> 0.7)
|
@@ -106,20 +117,20 @@ GEM
|
|
106
117
|
domain_name (~> 0.5)
|
107
118
|
httpclient (2.8.3)
|
108
119
|
inifile (3.0.0)
|
109
|
-
json (2.
|
120
|
+
json (2.2.0)
|
110
121
|
jwt (2.1.0)
|
111
122
|
memoist (0.16.0)
|
112
|
-
mime-types (3.
|
123
|
+
mime-types (3.3)
|
113
124
|
mime-types-data (~> 3.2015)
|
114
|
-
mime-types-data (3.
|
115
|
-
mini_magick (4.5
|
116
|
-
multi_json (1.
|
125
|
+
mime-types-data (3.2019.1009)
|
126
|
+
mini_magick (4.9.5)
|
127
|
+
multi_json (1.14.1)
|
117
128
|
multi_xml (0.6.0)
|
118
129
|
multipart-post (2.0.0)
|
119
130
|
nanaimo (0.2.6)
|
120
131
|
naturally (2.2.0)
|
121
|
-
os (1.0.
|
122
|
-
plist (3.
|
132
|
+
os (1.0.1)
|
133
|
+
plist (3.5.0)
|
123
134
|
public_suffix (2.0.5)
|
124
135
|
representable (3.0.4)
|
125
136
|
declarative (< 0.1.0)
|
@@ -127,32 +138,32 @@ GEM
|
|
127
138
|
uber (< 0.2.0)
|
128
139
|
retriable (3.1.2)
|
129
140
|
rouge (2.0.7)
|
130
|
-
rubyzip (1.
|
141
|
+
rubyzip (1.3.0)
|
131
142
|
security (0.1.3)
|
132
|
-
signet (0.
|
143
|
+
signet (0.12.0)
|
133
144
|
addressable (~> 2.3)
|
134
145
|
faraday (~> 0.9)
|
135
146
|
jwt (>= 1.5, < 3.0)
|
136
147
|
multi_json (~> 1.10)
|
137
|
-
simctl (1.6.
|
148
|
+
simctl (1.6.6)
|
138
149
|
CFPropertyList
|
139
150
|
naturally
|
140
151
|
slack-notifier (2.3.2)
|
141
|
-
terminal-notifier (
|
152
|
+
terminal-notifier (2.0.0)
|
142
153
|
terminal-table (1.8.0)
|
143
154
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
144
|
-
tins (1.
|
145
|
-
tty-cursor (0.
|
146
|
-
tty-screen (0.
|
147
|
-
tty-spinner (0.
|
148
|
-
tty-cursor (
|
155
|
+
tins (1.22.0)
|
156
|
+
tty-cursor (0.7.0)
|
157
|
+
tty-screen (0.7.0)
|
158
|
+
tty-spinner (0.9.1)
|
159
|
+
tty-cursor (~> 0.7)
|
149
160
|
uber (0.1.0)
|
150
161
|
unf (0.1.4)
|
151
162
|
unf_ext
|
152
|
-
unf_ext (0.0.7.
|
153
|
-
unicode-display_width (1.
|
163
|
+
unf_ext (0.0.7.6)
|
164
|
+
unicode-display_width (1.6.0)
|
154
165
|
word_wrap (1.0.0)
|
155
|
-
xcodeproj (1.
|
166
|
+
xcodeproj (1.13.0)
|
156
167
|
CFPropertyList (>= 2.3.3, < 4.0)
|
157
168
|
atomos (~> 0.1.3)
|
158
169
|
claide (>= 1.0.2, < 2.0)
|
@@ -172,4 +183,4 @@ DEPENDENCIES
|
|
172
183
|
u3d!
|
173
184
|
|
174
185
|
BUNDLED WITH
|
175
|
-
1.
|
186
|
+
1.17.1
|