knife-graph 0.0.3 → 0.0.4
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.
- data/README.md +8 -0
- data/knife-graph.gemspec +2 -1
- data/lib/knife-graph/version.rb +2 -2
- metadata +3 -2
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
knife-graph plugin
|
|
2
2
|
==================
|
|
3
3
|
|
|
4
|
+
[](http://badge.fury.io/rb/knife-graph)
|
|
5
|
+
|
|
4
6
|
A knife plugin that creates a graph out of various Chef resources.
|
|
5
7
|
|
|
6
8
|
Currently the only supported output is the mapping from roles to other roles and recipes (run_list).
|
|
@@ -10,6 +12,12 @@ Requirements
|
|
|
10
12
|
|
|
11
13
|
* graphviz
|
|
12
14
|
|
|
15
|
+
Output Legend
|
|
16
|
+
-------------
|
|
17
|
+
|
|
18
|
+
* Box: Role
|
|
19
|
+
* Ellipse: Recipe
|
|
20
|
+
|
|
13
21
|
SUBCOMMANDS
|
|
14
22
|
===========
|
|
15
23
|
|
data/knife-graph.gemspec
CHANGED
|
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.homepage = 'https://github.com/lightpriest/knife-graph'
|
|
11
11
|
s.summary = %q{Plugin that exports Chef installations structure in a graph}
|
|
12
12
|
s.description = s.summary
|
|
13
|
+
s.license = 'Apache v2'
|
|
13
14
|
|
|
14
15
|
s.add_dependency 'graph'
|
|
15
16
|
s.add_dependency 'mixlib-shellout'
|
|
@@ -18,4 +19,4 @@ Gem::Specification.new do |s|
|
|
|
18
19
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
20
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
21
|
s.require_paths = ["lib"]
|
|
21
|
-
end
|
|
22
|
+
end
|
data/lib/knife-graph/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-graph
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -59,7 +59,8 @@ files:
|
|
|
59
59
|
- lib/chef/knife/graph.rb
|
|
60
60
|
- lib/knife-graph/version.rb
|
|
61
61
|
homepage: https://github.com/lightpriest/knife-graph
|
|
62
|
-
licenses:
|
|
62
|
+
licenses:
|
|
63
|
+
- Apache v2
|
|
63
64
|
post_install_message:
|
|
64
65
|
rdoc_options: []
|
|
65
66
|
require_paths:
|