knife-env-diff 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
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 env-diff development production
10
+ % knife environment diff development production
11
11
 
12
12
  diffing environment development against production
13
13
 
@@ -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::EnvDiff::VERSION
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
@@ -17,9 +17,9 @@
17
17
  #
18
18
 
19
19
  module GoulahKnifePlugins
20
- class EnvDiff < Chef::Knife
20
+ class EnvironmentDiff < Chef::Knife
21
21
 
22
- banner "knife env-diff [ENVIRONMENTS...]"
22
+ banner "knife environment diff [ENVIRONMENTS...]"
23
23
 
24
24
  def run
25
25
  if name_args.size < 2
@@ -1,5 +1,5 @@
1
1
  module Knife
2
- module EnvDiff
3
- VERSION = "0.0.1"
2
+ module EnvironmentDiff
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - John Goulah