knife-env-diff 0.0.1 → 0.0.2
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 +1 -1
- data/knife-env-diff.gemspec +1 -1
- data/lib/chef/knife/env-diff.rb +2 -2
- data/lib/knife-env-diff/version.rb +2 -2
- metadata +2 -2
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ A plugin for Chef::Knife which will diff the cookbook versions of two or more en
|
|
|
7
7
|
Supply two or more environments to get a diff of their cookbook versions
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
% knife
|
|
10
|
+
% knife environment diff development production
|
|
11
11
|
|
|
12
12
|
diffing environment development against production
|
|
13
13
|
|
data/knife-env-diff.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ require "knife-env-diff/version"
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'knife-env-diff'
|
|
7
|
-
s.version = Knife::
|
|
7
|
+
s.version = Knife::EnvironmentDiff::VERSION
|
|
8
8
|
s.date = '2012-01-02'
|
|
9
9
|
s.summary = "A plugin for Chef::Knife which displays the roles that are included recursively within a role and optionally displays all the roles that include it."
|
|
10
10
|
s.description = s.summary
|
data/lib/chef/knife/env-diff.rb
CHANGED