wooga_wooget 2.1.1 → 2.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/bin/wooget +8 -1
- data/lib/wooget/util/build_error.rb +25 -2
- data/lib/wooget/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e8576b2fe50b93a37a8a692473a79e4b4dd7ed9a
|
|
4
|
+
data.tar.gz: c8af36ec7212a864bcbc9beb2f7ec72fbe041ba9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea341255fd07f11484250f9ce89ddd138cb50ccff7d7b12f60e1ed9e82100ad1a0794b889b042f315a4c43cb3138676e28e7921ad2720472ddd5922fc1f4d508
|
|
7
|
+
data.tar.gz: 9c739c7c5e30c348bc51e3e9ff402e96db48377f15cfed42cee86da08e2f77054809c45acacea14eca0cc67f122d94ce3c674bc70b803056aeb6d8d8736881e7
|
data/bin/wooget
CHANGED
|
@@ -1,8 +1,31 @@
|
|
|
1
1
|
module Wooget
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
class WoogetError < StandardError
|
|
4
|
+
|
|
5
|
+
attr_reader :exit_code
|
|
6
|
+
|
|
7
|
+
def initialize msg = nil, exit_code = 1
|
|
8
|
+
super msg
|
|
9
|
+
@exit_code = exit_code
|
|
10
|
+
end
|
|
3
11
|
end
|
|
4
12
|
|
|
5
|
-
class
|
|
13
|
+
class BuildError < WoogetError
|
|
14
|
+
|
|
15
|
+
EXIT_CODE = 2
|
|
16
|
+
|
|
17
|
+
def initialize msg = nil
|
|
18
|
+
super msg, EXIT_CODE
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
class RepoError < WoogetError
|
|
24
|
+
|
|
25
|
+
EXIT_CODE = 3
|
|
6
26
|
|
|
27
|
+
def initialize msg = nil
|
|
28
|
+
super msg, EXIT_CODE
|
|
29
|
+
end
|
|
7
30
|
end
|
|
8
31
|
end
|
data/lib/wooget/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wooga_wooget
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Donald Hutchison
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-02-
|
|
11
|
+
date: 2017-02-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -215,7 +215,7 @@ post_install_message: |2+
|
|
|
215
215
|
\_/\_/ \___/ \___/ \__, |\___|\__(_)
|
|
216
216
|
|___/
|
|
217
217
|
|
|
218
|
-
unity package manager cli version 2.1.
|
|
218
|
+
unity package manager cli version 2.1.2!
|
|
219
219
|
|
|
220
220
|
rdoc_options: []
|
|
221
221
|
require_paths:
|
|
@@ -232,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
232
232
|
version: '0'
|
|
233
233
|
requirements: []
|
|
234
234
|
rubyforge_project:
|
|
235
|
-
rubygems_version: 2.5
|
|
235
|
+
rubygems_version: 2.4.5
|
|
236
236
|
signing_key:
|
|
237
237
|
specification_version: 4
|
|
238
238
|
summary: A cli to control all unity/paket package management tasks at wooga
|