firespring_dev_commands 2.0.1.pre.alpha.2 → 2.0.1.pre.alpha.3
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/firespring_dev_commands/docker.rb +6 -1
- data/lib/firespring_dev_commands/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: b2f20a3e8cf4609a9d757ff0c9ff233406ced80baecd6edcd78e5ed9a4edd0ce
|
|
4
|
+
data.tar.gz: 1cee96ca926be8b395a9975aabdeae1296f0f64a7072de2372b83d9c5e2f2cc9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f62564f2e7455095a02d747231fc144b5f10ddd154fc7344adc0364e0f2019cc930c17c29a99dd21fa13ed59843ed9891120ec73e41e79de3309c36ca943932c
|
|
7
|
+
data.tar.gz: d7d55469c2750efa3f61afa18a71e542b5575d71997b15f9ed36173c60b1bb2c8430dc4feb61aea03f0edbeacd2d6635cf407457826dd72a40a5a0cb9fe213fe
|
|
@@ -201,6 +201,8 @@ module Dev
|
|
|
201
201
|
private def image_info(image)
|
|
202
202
|
[].tap do |ary|
|
|
203
203
|
arch = image.json&.dig('Architecture')
|
|
204
|
+
variant = image.json&.dig('Variant')
|
|
205
|
+
arch = "#{arch}/#{variant}" if variant
|
|
204
206
|
id = image.info&.dig('id')&.split(':')&.last&.slice(0..11)
|
|
205
207
|
created = timesince(Time.at(image.info&.dig('Created')))
|
|
206
208
|
size = filesize(image.info&.dig('Size'))
|
|
@@ -253,7 +255,10 @@ module Dev
|
|
|
253
255
|
private def container_info(container)
|
|
254
256
|
id = container.id&.slice(0..11)
|
|
255
257
|
image = container.info&.dig('Image')
|
|
256
|
-
|
|
258
|
+
image_json = ::Docker::Image.get(image).json
|
|
259
|
+
arch = image_json&.dig('Architecture')
|
|
260
|
+
variant = image_json&.dig('Variant')
|
|
261
|
+
arch = "#{arch}/#{variant}" if variant
|
|
257
262
|
command = container.info&.dig('Command')
|
|
258
263
|
created = timesince(Time.at(container.info&.dig('Created')))
|
|
259
264
|
status = container.info&.dig('Status')
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: firespring_dev_commands
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.1.pre.alpha.
|
|
4
|
+
version: 2.0.1.pre.alpha.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Firespring
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-07-
|
|
11
|
+
date: 2023-07-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|