bsdkrun 0.3.0 → 0.3.1
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/lib/bsdkrun/sandbox.rb +1 -1
- data/lib/bsdkrun/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe9ff0a423b1c2c2a7e2c61517396210b49e375dcb476f0fa33ab256e2d4a615
|
|
4
|
+
data.tar.gz: cb19ed673cc77aeca248eda87d51cba7d8952f3be4396a797d625e6a1e644b8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da14cb176e1f9aacb27c7689d267a7f551f3aa94dd261fb4a5b4d0c1935c8e07c76bf9f6e9bf52600642a96f76bb8664e3e932a29105f22bf9dca15ca3b8bdd7
|
|
7
|
+
data.tar.gz: 7ae4a5af1c196da907d593aa20f7a4db241250186ab7609e5494e8328876bf1e47383472421da12ea8c4c9dda90e9687a8bb76ff202798beb56989bc7690d65e
|
data/lib/bsdkrun/sandbox.rb
CHANGED
|
@@ -69,7 +69,7 @@ module Bsdkrun
|
|
|
69
69
|
# @return [Sandbox]
|
|
70
70
|
# @raise [SandboxNotFound]
|
|
71
71
|
def get(id)
|
|
72
|
-
row = list(all: true).find { |m| m.id == id || m.id.start_with?(id) }
|
|
72
|
+
row = list(all: true).find { |m| m.id == id || m.id.start_with?(id) || m.name == id }
|
|
73
73
|
raise SandboxNotFound, id unless row
|
|
74
74
|
|
|
75
75
|
new(row.id)
|
data/lib/bsdkrun/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bsdkrun
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tsiry Sandratraina
|
|
@@ -42,7 +42,7 @@ description: |
|
|
|
42
42
|
BSD/Linux/unikernel microVMs programmatically: create sandboxes, exec commands, manage
|
|
43
43
|
lifecycle, and wire up global networks, volumes and images.
|
|
44
44
|
email:
|
|
45
|
-
- tsiry.sndr@
|
|
45
|
+
- tsiry.sndr@rocksky.app
|
|
46
46
|
executables: []
|
|
47
47
|
extensions: []
|
|
48
48
|
extra_rdoc_files: []
|