specinfra 2.66.9 → 2.67.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
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f21b316e6c4687959bdb8e9e344b981a5a5d1cd
|
|
4
|
+
data.tar.gz: f99ea92c64c15337c0e2c2d9d43142b94fb66395
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85e43b80d970d78bccfb61e216895c43c6499b980958beaf7f0f21b248729442e22e53882902d9b2e889f430c5bb6b59b0b82cd67202f8ed649927ba9bf0140c
|
|
7
|
+
data.tar.gz: 4931fa261622ffeacaf7bbd3d7426b3b39169838d3ac409506ddbf88d2d939086a20f6d8c90baa75000aa99a003f72ec13f3572c0caf6d7ec32dc026b1fd2e96
|
data/lib/specinfra/command.rb
CHANGED
|
@@ -185,6 +185,10 @@ require 'specinfra/command/ubuntu/v15/service'
|
|
|
185
185
|
require 'specinfra/command/linuxmint'
|
|
186
186
|
require 'specinfra/command/linuxmint/base'
|
|
187
187
|
|
|
188
|
+
# elementary OS (inherit Ubuntu)
|
|
189
|
+
require 'specinfra/command/elementary'
|
|
190
|
+
require 'specinfra/command/elementary/base'
|
|
191
|
+
|
|
188
192
|
# Cumulus Networks (inherit Debian)
|
|
189
193
|
require 'specinfra/command/cumulus'
|
|
190
194
|
require 'specinfra/command/cumulus/base'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
class Specinfra::Command::Elementary; end
|
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.
|
|
4
|
+
version: 2.67.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: 2017-02-
|
|
11
|
+
date: 2017-02-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-scp
|
|
@@ -279,6 +279,8 @@ files:
|
|
|
279
279
|
- lib/specinfra/command/debian/v8.rb
|
|
280
280
|
- lib/specinfra/command/debian/v8/port.rb
|
|
281
281
|
- lib/specinfra/command/debian/v8/service.rb
|
|
282
|
+
- lib/specinfra/command/elementary.rb
|
|
283
|
+
- lib/specinfra/command/elementary/base.rb
|
|
282
284
|
- lib/specinfra/command/eos.rb
|
|
283
285
|
- lib/specinfra/command/eos/base.rb
|
|
284
286
|
- lib/specinfra/command/esxi.rb
|