jalc 2.2.0 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.devcontainer/devcontainer.json +2 -2
- data/CHANGELOG.md +4 -0
- data/lib/jalc/registration/middleware/raise_error.rb +4 -2
- data/lib/jalc/version.rb +1 -1
- data/sig/jalc.rbs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55ff4fb23821eddb0698085a58a54bec6663c30e19504fb5e25a0369972e7d57
|
4
|
+
data.tar.gz: cffd65412e172347f271f668eab81a40602cf624815ad670ba5ea61c291f5f1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e31213e71eb257b29b3ccb5ecb61ae681f1a4a1a5ab19b0518644217a22646251bd63b5feef0d150215f44aafd48b1d92fd63ec9a8999a01042a8b31e3e4fc3
|
7
|
+
data.tar.gz: 2c3aa1cc1445bfbb2f1a3e20da84bbff7cae9990a06c6553e1c5aada559f1888abd11391485d8f818ee7aec74d2506ce2e04cd57891f7ee70f4259250b8043d6
|
@@ -3,7 +3,7 @@
|
|
3
3
|
{
|
4
4
|
"name": "Ruby",
|
5
5
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
6
|
-
"image": "mcr.microsoft.com/devcontainers/ruby:0-
|
6
|
+
"image": "mcr.microsoft.com/devcontainers/ruby:0-3-bullseye",
|
7
7
|
|
8
8
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
9
9
|
// "features": {},
|
@@ -12,7 +12,7 @@
|
|
12
12
|
// "forwardPorts": [],
|
13
13
|
|
14
14
|
// Use 'postCreateCommand' to run commands after the container is created.
|
15
|
-
"postCreateCommand": "
|
15
|
+
"postCreateCommand": "bin/setup",
|
16
16
|
|
17
17
|
// Configure tool-specific properties.
|
18
18
|
"customizations": {
|
data/CHANGELOG.md
CHANGED
@@ -24,9 +24,11 @@ module JaLC
|
|
24
24
|
class RegistrationError < Error
|
25
25
|
attr_reader :doc
|
26
26
|
|
27
|
-
def initialize(msg = nil, doc:)
|
27
|
+
def initialize(msg = nil, doc: nil)
|
28
28
|
@doc = doc
|
29
|
-
msg
|
29
|
+
if msg.nil? && doc
|
30
|
+
msg = "#{doc.root.elements['head/errmsg']&.text} (errcd=#{doc.root.elements['head/errcd']&.text})"
|
31
|
+
end
|
30
32
|
super(msg)
|
31
33
|
end
|
32
34
|
end
|
data/lib/jalc/version.rb
CHANGED
data/sig/jalc.rbs
CHANGED