specinfra 2.85.1 → 2.87.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f4d95326df395f0dc227c42c60374f4ff6cdfa87
4
- data.tar.gz: 962f068198272e29bb5ef4595ce2526797f33201
2
+ SHA256:
3
+ metadata.gz: d8e74831663d268890aadd2252bf2d2435f1148576ba3cefcec169d535b2a0ea
4
+ data.tar.gz: 0d1682b364732cb449b03aa3442e92f26b5edd209c5c48f10a5b449b5cac7d4f
5
5
  SHA512:
6
- metadata.gz: aae0d43151afbedeb361280fc7331eaf383259167aaa622d79a707dc4376723703616665376589c635f6e23bf075898fc40eea0d96de3e93ca03c44053ebcc0c
7
- data.tar.gz: ca998bf4525bfc02ee240f6e63cd652b32e6aa7fb75191b093678c89c6fc8ac09d2b81d966913265c08b9a968467b85666f761086b28bbc66f30689b6af499be
6
+ metadata.gz: 7a96e984832b6685a2d54dac6f12723434fed1f08afc25fe39879fed8523ef26d0a87137e36248b8b744244f05d82e25c20a21be0d1b9ea8ad4423b25603c426
7
+ data.tar.gz: 6cd8b3fca493cc199a8004ead0540213b0919a7c23e567fa403e2bca8f6080d44bc029a52ca60f6113163f31e4560200107a60c28f153ae2e45cadd489a346cf
@@ -0,0 +1,2 @@
1
+ class Specinfra::Command::Amazon::V2023 < Specinfra::Command::Amazon::V2022
2
+ end
@@ -0,0 +1,2 @@
1
+ class Specinfra::Command::Vyos::Base < Specinfra::Command::Debian::Base
2
+ end
@@ -0,0 +1 @@
1
+ class Specinfra::Command::Vyos; end
@@ -134,6 +134,9 @@ require 'specinfra/command/amazon/v2022/port'
134
134
  require 'specinfra/command/amazon/v2022/service'
135
135
  require 'specinfra/command/amazon/v2022/yumrepo'
136
136
 
137
+ # Amazon Linux V2023 (inherit Amazon Linux V2022)
138
+ require 'specinfra/command/amazon/v2023'
139
+
137
140
  # AIX (inherit Base)
138
141
  require 'specinfra/command/aix'
139
142
  require 'specinfra/command/aix/base'
@@ -233,6 +236,10 @@ require 'specinfra/command/cumulus/base'
233
236
  require 'specinfra/command/cumulus/base/ppa'
234
237
  require 'specinfra/command/cumulus/base/service'
235
238
 
239
+ # VyOS (inherit Debian)
240
+ require 'specinfra/command/vyos'
241
+ require 'specinfra/command/vyos/base'
242
+
236
243
  # Gentoo (inherit Linux)
237
244
  require 'specinfra/command/gentoo'
238
245
  require 'specinfra/command/gentoo/base'
@@ -1,3 +1,3 @@
1
1
  module Specinfra
2
- VERSION = "2.85.1"
2
+ VERSION = "2.87.0"
3
3
  end
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.1
4
+ version: 2.87.0
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-05-24 00:00:00.000000000 Z
11
+ date: 2023-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-scp
@@ -175,6 +175,7 @@ files:
175
175
  - lib/specinfra/command/amazon/v2022/port.rb
176
176
  - lib/specinfra/command/amazon/v2022/service.rb
177
177
  - lib/specinfra/command/amazon/v2022/yumrepo.rb
178
+ - lib/specinfra/command/amazon/v2023.rb
178
179
  - lib/specinfra/command/arch.rb
179
180
  - lib/specinfra/command/arch/base.rb
180
181
  - lib/specinfra/command/arch/base/package.rb
@@ -433,6 +434,8 @@ files:
433
434
  - lib/specinfra/command/ubuntu/v15/service.rb
434
435
  - lib/specinfra/command/ubuntu/v18.rb
435
436
  - lib/specinfra/command/ubuntu/v18/port.rb
437
+ - lib/specinfra/command/vyos.rb
438
+ - lib/specinfra/command/vyos/base.rb
436
439
  - lib/specinfra/command/windows.rb
437
440
  - lib/specinfra/command/windows/base.rb
438
441
  - lib/specinfra/command/windows/base/feature.rb
@@ -652,8 +655,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
652
655
  - !ruby/object:Gem::Version
653
656
  version: '0'
654
657
  requirements: []
655
- rubyforge_project:
656
- rubygems_version: 2.5.1
658
+ rubygems_version: 3.1.2
657
659
  signing_key:
658
660
  specification_version: 4
659
661
  summary: Common layer for serverspec and itamae