vagrant-mro 0.0.2 → 0.0.3
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/README.md +5 -0
- data/lib/vagrant-mro/command.rb +0 -2
- data/lib/vagrant-mro/version.rb +1 -1
- data/vagrant-mro.gemspec +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 410239f00ebbbf275dd35706bc0876b27b0f2229
|
|
4
|
+
data.tar.gz: 583503fc0511a7388d70fbb593f1a520ca57f274
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ca341755d38543c1f2f3e9f728472f2579c504e65b0f4023d9716361f1baecfc4132c5375c804f4a0a2a20a389f9b8f343d07b34d688ab3a82b7943a4a1b061
|
|
7
|
+
data.tar.gz: 4c4558c1cf8f7986aaa4b733441586e171d4c684d2d698d4ae50ab21f248392fcf9899a45c80bbac76744f59f348c20ed3791a25ead1415d66f8b1f42281c03f
|
data/README.md
CHANGED
|
@@ -16,3 +16,8 @@ from Vagrant, until this functionality is implemented in Vagrant itself.
|
|
|
16
16
|
|
|
17
17
|
915bee0,default,saved
|
|
18
18
|
|
|
19
|
+
## Todo
|
|
20
|
+
|
|
21
|
+
* Should probably use the machine-readable UI format
|
|
22
|
+
* Or, fix this in vagrant itself by splitting the command output from
|
|
23
|
+
its data in the global-status plugin
|
data/lib/vagrant-mro/command.rb
CHANGED
|
@@ -9,7 +9,6 @@ module VagrantPlugins
|
|
|
9
9
|
|
|
10
10
|
def execute
|
|
11
11
|
attrs = [:id, :name, :state]
|
|
12
|
-
@env.ui.warn("I'm here", new_line: true)
|
|
13
12
|
entries = []
|
|
14
13
|
Vagrant::Util::SilenceWarnings.silence! do
|
|
15
14
|
@env.machine_index.each do |entry|
|
|
@@ -21,7 +20,6 @@ module VagrantPlugins
|
|
|
21
20
|
end
|
|
22
21
|
end
|
|
23
22
|
|
|
24
|
-
@env.ui.warn "here", new_line: true
|
|
25
23
|
if entries.empty?
|
|
26
24
|
@env.ui.info(I18n.t("vagrant.global_status_none"))
|
|
27
25
|
return 0
|
data/lib/vagrant-mro/version.rb
CHANGED
data/vagrant-mro.gemspec
CHANGED
|
@@ -9,6 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Sam Halicke"]
|
|
10
10
|
spec.email = ["sam@twenty20.com"]
|
|
11
11
|
spec.summary = %q{Produces machine-readable global status output.}
|
|
12
|
+
spec.description = %q{Produces machine-readable global status output.}
|
|
12
13
|
spec.homepage = "https://github.com/acceptly/vagrant-mro"
|
|
13
14
|
spec.license = "MIT"
|
|
14
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-mro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sam Halicke
|
|
@@ -38,7 +38,7 @@ dependencies:
|
|
|
38
38
|
- - '>='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description:
|
|
41
|
+
description: Produces machine-readable global status output.
|
|
42
42
|
email:
|
|
43
43
|
- sam@twenty20.com
|
|
44
44
|
executables: []
|