specinfra 2.85.0 → 2.85.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/specinfra/command/neon/base.rb +2 -0
- data/lib/specinfra/command/neon.rb +1 -0
- data/lib/specinfra/command.rb +4 -0
- data/lib/specinfra/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f4d95326df395f0dc227c42c60374f4ff6cdfa87
|
|
4
|
+
data.tar.gz: 962f068198272e29bb5ef4595ce2526797f33201
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aae0d43151afbedeb361280fc7331eaf383259167aaa622d79a707dc4376723703616665376589c635f6e23bf075898fc40eea0d96de3e93ca03c44053ebcc0c
|
|
7
|
+
data.tar.gz: ca998bf4525bfc02ee240f6e63cd652b32e6aa7fb75191b093678c89c6fc8ac09d2b81d966913265c08b9a968467b85666f761086b28bbc66f30689b6af499be
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
class Specinfra::Command::Neon; end
|
data/lib/specinfra/command.rb
CHANGED
|
@@ -223,6 +223,10 @@ require 'specinfra/command/linuxmint/base'
|
|
|
223
223
|
require 'specinfra/command/elementary'
|
|
224
224
|
require 'specinfra/command/elementary/base'
|
|
225
225
|
|
|
226
|
+
# Neon (inherit Ubuntu)
|
|
227
|
+
require 'specinfra/command/neon'
|
|
228
|
+
require 'specinfra/command/neon/base'
|
|
229
|
+
|
|
226
230
|
# Cumulus Networks (inherit Debian)
|
|
227
231
|
require 'specinfra/command/cumulus'
|
|
228
232
|
require 'specinfra/command/cumulus/base'
|
data/lib/specinfra/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: specinfra
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.85.
|
|
4
|
+
version: 2.85.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gosuke Miyashita
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-scp
|
|
@@ -330,6 +330,8 @@ files:
|
|
|
330
330
|
- lib/specinfra/command/module/ss.rb
|
|
331
331
|
- lib/specinfra/command/module/systemd.rb
|
|
332
332
|
- lib/specinfra/command/module/zfs.rb
|
|
333
|
+
- lib/specinfra/command/neon.rb
|
|
334
|
+
- lib/specinfra/command/neon/base.rb
|
|
333
335
|
- lib/specinfra/command/nixos.rb
|
|
334
336
|
- lib/specinfra/command/nixos/base.rb
|
|
335
337
|
- lib/specinfra/command/nixos/base/package.rb
|