kitchen-scribe 0.1.0 → 0.2.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.
- data/Gemfile +1 -0
- data/Gemfile.lock +3 -0
- data/README.md +89 -19
- data/lib/chef/knife/scribe_adjust.rb +325 -0
- data/lib/chef/knife/scribe_copy.rb +4 -4
- data/lib/chef/knife/scribe_hire.rb +2 -2
- data/lib/kitchen-scribe/version.rb +1 -1
- data/spec/chef/knife/scribe_adjust_spec.rb +916 -0
- data/spec/spec_helper.rb +1 -0
- metadata +5 -2
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-scribe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-05-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: chef
|
@@ -91,9 +91,11 @@ files:
|
|
91
91
|
- LICENSE
|
92
92
|
- README.md
|
93
93
|
- kitchen-scribe.gemspec
|
94
|
+
- lib/chef/knife/scribe_adjust.rb
|
94
95
|
- lib/chef/knife/scribe_copy.rb
|
95
96
|
- lib/chef/knife/scribe_hire.rb
|
96
97
|
- lib/kitchen-scribe/version.rb
|
98
|
+
- spec/chef/knife/scribe_adjust_spec.rb
|
97
99
|
- spec/chef/knife/scribe_copy_spec.rb
|
98
100
|
- spec/chef/knife/scribe_hire_spec.rb
|
99
101
|
- spec/spec_helper.rb
|
@@ -122,6 +124,7 @@ signing_key:
|
|
122
124
|
specification_version: 3
|
123
125
|
summary: Knife plugin for tracking your chef configuration changes
|
124
126
|
test_files:
|
127
|
+
- spec/chef/knife/scribe_adjust_spec.rb
|
125
128
|
- spec/chef/knife/scribe_copy_spec.rb
|
126
129
|
- spec/chef/knife/scribe_hire_spec.rb
|
127
130
|
- spec/spec_helper.rb
|