specinfra 2.36.9 → 2.36.10

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: 4cf93ab042236297cb6f78d012341b8b7870b77b
4
- data.tar.gz: a81e8e5dbe0c3dfa2bf40d8ddedb32e70bee665e
3
+ metadata.gz: 224ce31465a9d1899e999b9baeee10eed1525e11
4
+ data.tar.gz: d82a9c7b3951ac77d8e18348dbfc19a9fb3fe805
5
5
  SHA512:
6
- metadata.gz: 0e01bc129cfeddfc571083a30458bc450795d942f035ad6da3832be25f5952cd15b3d5329c883e577f6f4ddf731e738b80aa5b0bb73374346f598d6542bde135
7
- data.tar.gz: 552564670bf16631c158af9b03459a2db6659aab024db502b1f62b32eef7681f4e93df0cbe5eddc6b4e7c62c0feca5e078bf790a3472709ddd5a1ae16896d20b
6
+ metadata.gz: 100db91103b3f64f583529f200f5e17ce3d688825dc27549d100ffa654b4329b82227c9387e8b455f92412d034eabf5d8b81e0563c8f09acebc3a32fd6e7b10e
7
+ data.tar.gz: eeb6c72999513783ae4703bd63b454f4cd5961e81ea22267efa532c53dbe7c17cb435754a90b8eae830ca6fe0acc18016f4ee68e2f06254172dad4ecdcef8989
@@ -161,6 +161,10 @@ require 'specinfra/command/ubuntu/base'
161
161
  require 'specinfra/command/ubuntu/base/ppa'
162
162
  require 'specinfra/command/ubuntu/base/service'
163
163
 
164
+ # Ubuntu v15.xx (inherit Ubuntu)
165
+ require 'specinfra/command/ubuntu/v15'
166
+ require 'specinfra/command/ubuntu/v15/service'
167
+
164
168
  # Cumulus Networks (inherit Debian)
165
169
  require 'specinfra/command/cumulus'
166
170
  require 'specinfra/command/cumulus/base'
@@ -0,0 +1 @@
1
+ class Specinfra::Command::Ubuntu::V15 < Specinfra::Command::Debian::Base; end
@@ -0,0 +1,5 @@
1
+ class Specinfra::Command::Ubuntu::V15::Service < Specinfra::Command::Ubuntu::Base::Service
2
+ class << self
3
+ include Specinfra::Command::Module::Systemd
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module Specinfra
2
- VERSION = "2.36.9"
2
+ VERSION = "2.36.10"
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.36.9
4
+ version: 2.36.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gosuke Miyashita
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-30 00:00:00.000000000 Z
11
+ date: 2015-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-scp
@@ -344,6 +344,8 @@ files:
344
344
  - lib/specinfra/command/ubuntu/base.rb
345
345
  - lib/specinfra/command/ubuntu/base/ppa.rb
346
346
  - lib/specinfra/command/ubuntu/base/service.rb
347
+ - lib/specinfra/command/ubuntu/v15.rb
348
+ - lib/specinfra/command/ubuntu/v15/service.rb
347
349
  - lib/specinfra/command/windows.rb
348
350
  - lib/specinfra/command/windows/base.rb
349
351
  - lib/specinfra/command/windows/base/feature.rb
@@ -531,3 +533,4 @@ test_files:
531
533
  - spec/host_inventory/linux/filesystem_spec.rb
532
534
  - spec/host_inventory/linux/memory_spec.rb
533
535
  - spec/spec_helper.rb
536
+ has_rdoc: