specinfra 2.75.0 → 2.75.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fd910f8421c5db6b05d4493c01a158852323054b
4
- data.tar.gz: 5f57cd75c161e9fcc5fec8183a22400503ea739a
3
+ metadata.gz: b5e68635bb1b1d2a56bc6ed57ebad0f37f8f0109
4
+ data.tar.gz: c20aca22df46d22f81fdc1ac92a8899e5aacaf2b
5
5
  SHA512:
6
- metadata.gz: 48db54cb792ccacfcb608c367d8efffe4593668881a0692eb5eae20c972b75169df5ea230f49b8919b1aaf98d614afe5b03cf6e269f6f48be628d32688a18237
7
- data.tar.gz: 9163a886bafb285e6cb95766e54fe118b7568b843b525d2eca56877155a66afad8722389705fcf1d25a4805c3ca30c83b3c626951807a85bcf2f118c34ce4b41
6
+ metadata.gz: 6e014e1ad26e51e462326673ca9df48758c00b1c9e4f5441ca4bd17b7d0508bc1b745d44b902c9006094a6db47cc57889387e73c69b850920d1e6cd59575f4ea
7
+ data.tar.gz: 4ea05ffca872abd8d12ba0b52aca050f1515c4381248b40c172d114c2172560812a54754f65d291d8b613fccc87d9a48a62104c55dda2aeb6db3245522f9853b
@@ -0,0 +1,11 @@
1
+ class Specinfra::Command::Ubuntu::Base::Port < Specinfra::Command::Linux::Base::Port
2
+ class << self
3
+ def create(os_info=nil)
4
+ if (os_info || os)[:release].to_i < 18
5
+ self
6
+ else
7
+ Specinfra::Command::Ubuntu::V18::Port
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1 @@
1
+ class Specinfra::Command::Ubuntu::V18 < Specinfra::Command::Ubuntu::Base; end
@@ -0,0 +1,5 @@
1
+ class Specinfra::Command::Ubuntu::Base::V18::Port < Specinfra::Command::Ubuntu::Base::Port
2
+ class << self
3
+ include Specinfra::Command::Module::Ss
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module Specinfra
2
- VERSION = "2.75.0"
2
+ VERSION = "2.75.1"
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.75.0
4
+ version: 2.75.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: 2018-07-11 00:00:00.000000000 Z
11
+ date: 2018-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-scp
@@ -444,10 +444,13 @@ files:
444
444
  - lib/specinfra/command/suse/base/service.rb
445
445
  - lib/specinfra/command/ubuntu.rb
446
446
  - lib/specinfra/command/ubuntu/base.rb
447
+ - lib/specinfra/command/ubuntu/base/port.rb
447
448
  - lib/specinfra/command/ubuntu/base/ppa.rb
448
449
  - lib/specinfra/command/ubuntu/base/service.rb
449
450
  - lib/specinfra/command/ubuntu/v15.rb
450
451
  - lib/specinfra/command/ubuntu/v15/service.rb
452
+ - lib/specinfra/command/ubuntu/v18.rb
453
+ - lib/specinfra/command/ubuntu/v18/port.rb
451
454
  - lib/specinfra/command/windows.rb
452
455
  - lib/specinfra/command/windows/base.rb
453
456
  - lib/specinfra/command/windows/base/feature.rb