knife-skeleton 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.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzdhOWI5ZTQ0NjgzNDFmOTM5M2MwNzI0Njc1Mjc0YTI0ZTk4MDdmZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjE0YzIxZTE0MDQ5NjQwMDU3MDNhNjNjZWI3NzdlNTljMTdiZWU5MQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ODEyZGEzNDM4OWJlMzhkYWYxYzMzYTM2ZjAzOTFhYjcxNDBiYmQ1MThlZWEz
|
10
|
+
MTlkOTRmZTBjMzJkODUyNjc1NThlMWZlNzE2MGI4NWRmZDQ3NzJjOWFmNTI5
|
11
|
+
NWUzYWNmNzFiNDM3Nzc1ODYxZjdhNzUxOTNmNjYxZTMzZDc2Y2I=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MGMwOTIxYWRkNDY1OGQxNjM1MTA0MmZmOWY0MzBlZjJjZWFmYzc1ODdhYjYy
|
14
|
+
MGU3Mzk5NjRkMjRkOTY4ODQ1NWIzZDQzYmU1Yjc3YmE2ZGNiZDRjZTNlY2E2
|
15
|
+
OWRjMGZjZDNjY2UwMGMwYzgwYTk0ZjE5YTY5Y2I0NTU1ZWJkMTU=
|
@@ -126,6 +126,7 @@ eos
|
|
126
126
|
ui.msg("** Create cookbook #{cookbook_name} into #{cookbook_path}")
|
127
127
|
|
128
128
|
%w(
|
129
|
+
attributes
|
129
130
|
definitions
|
130
131
|
libraries
|
131
132
|
providers
|
@@ -170,6 +171,7 @@ eos
|
|
170
171
|
CHANGELOG.#{params[:readme_format]}
|
171
172
|
README.#{params[:readme_format]}
|
172
173
|
.kitchen.yml
|
174
|
+
attributes/default.rb
|
173
175
|
recipes/default.rb
|
174
176
|
spec/default_spec.rb
|
175
177
|
spec/spec_helper.rb
|
@@ -174,6 +174,7 @@ describe Knife::SkeletonCreate do
|
|
174
174
|
@knife.ui.should_receive(:msg).with("** Create 'CHANGELOG.md'")
|
175
175
|
@knife.ui.should_receive(:msg).with("** Create 'metadata.rb'")
|
176
176
|
@knife.ui.should_receive(:msg).with("** Create 'README.md'")
|
177
|
+
@knife.ui.should_receive(:msg).with("** Create 'attributes/default.rb'")
|
177
178
|
@knife.ui.should_receive(:msg).with("** Create 'recipes/default.rb'")
|
178
179
|
@knife.ui.should_receive(:msg).with("** Create 'spec/default_spec.rb'")
|
179
180
|
@knife.ui.should_receive(:msg).with("** Create 'spec/spec_helper.rb'")
|
@@ -194,6 +195,8 @@ describe Knife::SkeletonCreate do
|
|
194
195
|
@knife.ui.should_receive(:warn).with("'metadata.rb' already exists")
|
195
196
|
@knife.ui.should_receive(:warn).with("'CHANGELOG.md' already exists")
|
196
197
|
@knife.ui.should_receive(:warn).with("'README.md' already exists")
|
198
|
+
@knife.ui.should_receive(:warn).with(
|
199
|
+
"'attributes/default.rb' already exists")
|
197
200
|
@knife.ui.should_receive(:warn).with(
|
198
201
|
"'recipes/default.rb' already exists")
|
199
202
|
@knife.ui.should_receive(:warn).with(
|
@@ -207,6 +210,7 @@ describe Knife::SkeletonCreate do
|
|
207
210
|
@knife.run
|
208
211
|
|
209
212
|
%w(
|
213
|
+
attributes
|
210
214
|
definitions
|
211
215
|
libraries
|
212
216
|
providers
|
@@ -230,6 +234,7 @@ describe Knife::SkeletonCreate do
|
|
230
234
|
Strainerfile
|
231
235
|
CHANGELOG.md
|
232
236
|
README.md
|
237
|
+
attributes/default.rb
|
233
238
|
recipes/default.rb
|
234
239
|
spec/default_spec.rb
|
235
240
|
spec/spec_helper.rb
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-skeleton
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pierre Rambaud
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-08-
|
12
|
+
date: 2014-08-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: chef
|
@@ -152,6 +152,7 @@ files:
|
|
152
152
|
- templates/README.md.erb
|
153
153
|
- templates/README.rdoc.erb
|
154
154
|
- templates/README.txt.erb
|
155
|
+
- templates/attributes/default.rb.erb
|
155
156
|
- templates/metadata.rb.erb
|
156
157
|
- templates/recipes/default.rb.erb
|
157
158
|
- templates/spec/default_spec.rb.erb
|