chef-taste 1.0.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.
Files changed (61) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +108 -0
  5. data/Rakefile +1 -0
  6. data/bin/taste +5 -0
  7. data/chef-taste.gemspec +31 -0
  8. data/lib/chef/taste.rb +41 -0
  9. data/lib/chef/taste/changelog.rb +107 -0
  10. data/lib/chef/taste/cli.rb +46 -0
  11. data/lib/chef/taste/dependency.rb +72 -0
  12. data/lib/chef/taste/dependency_checker.rb +95 -0
  13. data/lib/chef/taste/display.rb +84 -0
  14. data/lib/chef/taste/errors.rb +32 -0
  15. data/lib/chef/taste/symbols.rb +30 -0
  16. data/lib/chef/taste/version.rb +35 -0
  17. data/test/cookbooks/curry/.gitignore +17 -0
  18. data/test/cookbooks/curry/.kitchen.yml +27 -0
  19. data/test/cookbooks/curry/Berksfile +3 -0
  20. data/test/cookbooks/curry/Gemfile +7 -0
  21. data/test/cookbooks/curry/LICENSE +3 -0
  22. data/test/cookbooks/curry/README.md +13 -0
  23. data/test/cookbooks/curry/Thorfile +12 -0
  24. data/test/cookbooks/curry/Vagrantfile +86 -0
  25. data/test/cookbooks/curry/chefignore +96 -0
  26. data/test/cookbooks/curry/metadata.rb +12 -0
  27. data/test/cookbooks/curry/recipes/default.rb +8 -0
  28. data/test/cookbooks/fried_rice/.gitignore +17 -0
  29. data/test/cookbooks/fried_rice/.kitchen.yml +27 -0
  30. data/test/cookbooks/fried_rice/Berksfile +3 -0
  31. data/test/cookbooks/fried_rice/Gemfile +7 -0
  32. data/test/cookbooks/fried_rice/LICENSE +3 -0
  33. data/test/cookbooks/fried_rice/README.md +13 -0
  34. data/test/cookbooks/fried_rice/Thorfile +12 -0
  35. data/test/cookbooks/fried_rice/Vagrantfile +86 -0
  36. data/test/cookbooks/fried_rice/chefignore +96 -0
  37. data/test/cookbooks/fried_rice/metadata.rb +12 -0
  38. data/test/cookbooks/fried_rice/recipes/default.rb +8 -0
  39. data/test/cookbooks/noodles/.gitignore +17 -0
  40. data/test/cookbooks/noodles/.kitchen.yml +27 -0
  41. data/test/cookbooks/noodles/Berksfile +3 -0
  42. data/test/cookbooks/noodles/Gemfile +7 -0
  43. data/test/cookbooks/noodles/LICENSE +3 -0
  44. data/test/cookbooks/noodles/README.md +13 -0
  45. data/test/cookbooks/noodles/Thorfile +12 -0
  46. data/test/cookbooks/noodles/Vagrantfile +86 -0
  47. data/test/cookbooks/noodles/chefignore +96 -0
  48. data/test/cookbooks/noodles/metadata.rb +11 -0
  49. data/test/cookbooks/noodles/recipes/default.rb +8 -0
  50. data/test/cookbooks/water/.gitignore +17 -0
  51. data/test/cookbooks/water/.kitchen.yml +27 -0
  52. data/test/cookbooks/water/Berksfile +3 -0
  53. data/test/cookbooks/water/Gemfile +7 -0
  54. data/test/cookbooks/water/LICENSE +3 -0
  55. data/test/cookbooks/water/README.md +13 -0
  56. data/test/cookbooks/water/Thorfile +12 -0
  57. data/test/cookbooks/water/Vagrantfile +86 -0
  58. data/test/cookbooks/water/chefignore +96 -0
  59. data/test/cookbooks/water/metadata.rb +8 -0
  60. data/test/cookbooks/water/recipes/default.rb +8 -0
  61. metadata +297 -0
@@ -0,0 +1,8 @@
1
+ name 'water'
2
+ maintainer 'YOUR_NAME'
3
+ maintainer_email 'YOUR_EMAIL'
4
+ license 'All rights reserved'
5
+ description 'Installs/Configures water'
6
+ long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
7
+ version '0.1.0'
8
+
@@ -0,0 +1,8 @@
1
+ #
2
+ # Cookbook Name:: water
3
+ # Recipe:: default
4
+ #
5
+ # Copyright (C) 2013 YOUR_NAME
6
+ #
7
+ # All rights reserved - Do Not Redistribute
8
+ #
metadata ADDED
@@ -0,0 +1,297 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chef-taste
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Kannan Manickam
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-10-27 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.3'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.3'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: solve
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 0.8.0
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 0.8.0
62
+ - !ruby/object:Gem::Dependency
63
+ name: berkshelf
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 2.0.10
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 2.0.10
78
+ - !ruby/object:Gem::Dependency
79
+ name: thor
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ~>
84
+ - !ruby/object:Gem::Version
85
+ version: 0.18.0
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ version: 0.18.0
94
+ - !ruby/object:Gem::Dependency
95
+ name: terminal-table
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ~>
100
+ - !ruby/object:Gem::Version
101
+ version: 1.4.5
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: 1.4.5
110
+ - !ruby/object:Gem::Dependency
111
+ name: googl
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: 0.6.3
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: 0.6.3
126
+ - !ruby/object:Gem::Dependency
127
+ name: octokit
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ version: 2.5.0
134
+ type: :runtime
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ~>
140
+ - !ruby/object:Gem::Version
141
+ version: 2.5.0
142
+ - !ruby/object:Gem::Dependency
143
+ name: colorize
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ~>
148
+ - !ruby/object:Gem::Version
149
+ version: 0.5.8
150
+ type: :runtime
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ~>
156
+ - !ruby/object:Gem::Version
157
+ version: 0.5.8
158
+ description: This gem checks if updated versions of dependent cookbooks are available
159
+ for the cookbook
160
+ email:
161
+ - me@arangamani.net
162
+ executables:
163
+ - taste
164
+ extensions: []
165
+ extra_rdoc_files: []
166
+ files:
167
+ - .gitignore
168
+ - Gemfile
169
+ - LICENSE.txt
170
+ - README.md
171
+ - Rakefile
172
+ - bin/taste
173
+ - chef-taste.gemspec
174
+ - lib/chef/taste.rb
175
+ - lib/chef/taste/changelog.rb
176
+ - lib/chef/taste/cli.rb
177
+ - lib/chef/taste/dependency.rb
178
+ - lib/chef/taste/dependency_checker.rb
179
+ - lib/chef/taste/display.rb
180
+ - lib/chef/taste/errors.rb
181
+ - lib/chef/taste/symbols.rb
182
+ - lib/chef/taste/version.rb
183
+ - test/cookbooks/curry/.gitignore
184
+ - test/cookbooks/curry/.kitchen.yml
185
+ - test/cookbooks/curry/Berksfile
186
+ - test/cookbooks/curry/Gemfile
187
+ - test/cookbooks/curry/LICENSE
188
+ - test/cookbooks/curry/README.md
189
+ - test/cookbooks/curry/Thorfile
190
+ - test/cookbooks/curry/Vagrantfile
191
+ - test/cookbooks/curry/chefignore
192
+ - test/cookbooks/curry/metadata.rb
193
+ - test/cookbooks/curry/recipes/default.rb
194
+ - test/cookbooks/fried_rice/.gitignore
195
+ - test/cookbooks/fried_rice/.kitchen.yml
196
+ - test/cookbooks/fried_rice/Berksfile
197
+ - test/cookbooks/fried_rice/Gemfile
198
+ - test/cookbooks/fried_rice/LICENSE
199
+ - test/cookbooks/fried_rice/README.md
200
+ - test/cookbooks/fried_rice/Thorfile
201
+ - test/cookbooks/fried_rice/Vagrantfile
202
+ - test/cookbooks/fried_rice/chefignore
203
+ - test/cookbooks/fried_rice/metadata.rb
204
+ - test/cookbooks/fried_rice/recipes/default.rb
205
+ - test/cookbooks/noodles/.gitignore
206
+ - test/cookbooks/noodles/.kitchen.yml
207
+ - test/cookbooks/noodles/Berksfile
208
+ - test/cookbooks/noodles/Gemfile
209
+ - test/cookbooks/noodles/LICENSE
210
+ - test/cookbooks/noodles/README.md
211
+ - test/cookbooks/noodles/Thorfile
212
+ - test/cookbooks/noodles/Vagrantfile
213
+ - test/cookbooks/noodles/chefignore
214
+ - test/cookbooks/noodles/metadata.rb
215
+ - test/cookbooks/noodles/recipes/default.rb
216
+ - test/cookbooks/water/.gitignore
217
+ - test/cookbooks/water/.kitchen.yml
218
+ - test/cookbooks/water/Berksfile
219
+ - test/cookbooks/water/Gemfile
220
+ - test/cookbooks/water/LICENSE
221
+ - test/cookbooks/water/README.md
222
+ - test/cookbooks/water/Thorfile
223
+ - test/cookbooks/water/Vagrantfile
224
+ - test/cookbooks/water/chefignore
225
+ - test/cookbooks/water/metadata.rb
226
+ - test/cookbooks/water/recipes/default.rb
227
+ homepage: ''
228
+ licenses:
229
+ - MIT
230
+ post_install_message:
231
+ rdoc_options: []
232
+ require_paths:
233
+ - lib
234
+ required_ruby_version: !ruby/object:Gem::Requirement
235
+ none: false
236
+ requirements:
237
+ - - ! '>='
238
+ - !ruby/object:Gem::Version
239
+ version: '0'
240
+ required_rubygems_version: !ruby/object:Gem::Requirement
241
+ none: false
242
+ requirements:
243
+ - - ! '>='
244
+ - !ruby/object:Gem::Version
245
+ version: '0'
246
+ requirements: []
247
+ rubyforge_project:
248
+ rubygems_version: 1.8.23
249
+ signing_key:
250
+ specification_version: 3
251
+ summary: Chef cookbook dependency update checker
252
+ test_files:
253
+ - test/cookbooks/curry/.gitignore
254
+ - test/cookbooks/curry/.kitchen.yml
255
+ - test/cookbooks/curry/Berksfile
256
+ - test/cookbooks/curry/Gemfile
257
+ - test/cookbooks/curry/LICENSE
258
+ - test/cookbooks/curry/README.md
259
+ - test/cookbooks/curry/Thorfile
260
+ - test/cookbooks/curry/Vagrantfile
261
+ - test/cookbooks/curry/chefignore
262
+ - test/cookbooks/curry/metadata.rb
263
+ - test/cookbooks/curry/recipes/default.rb
264
+ - test/cookbooks/fried_rice/.gitignore
265
+ - test/cookbooks/fried_rice/.kitchen.yml
266
+ - test/cookbooks/fried_rice/Berksfile
267
+ - test/cookbooks/fried_rice/Gemfile
268
+ - test/cookbooks/fried_rice/LICENSE
269
+ - test/cookbooks/fried_rice/README.md
270
+ - test/cookbooks/fried_rice/Thorfile
271
+ - test/cookbooks/fried_rice/Vagrantfile
272
+ - test/cookbooks/fried_rice/chefignore
273
+ - test/cookbooks/fried_rice/metadata.rb
274
+ - test/cookbooks/fried_rice/recipes/default.rb
275
+ - test/cookbooks/noodles/.gitignore
276
+ - test/cookbooks/noodles/.kitchen.yml
277
+ - test/cookbooks/noodles/Berksfile
278
+ - test/cookbooks/noodles/Gemfile
279
+ - test/cookbooks/noodles/LICENSE
280
+ - test/cookbooks/noodles/README.md
281
+ - test/cookbooks/noodles/Thorfile
282
+ - test/cookbooks/noodles/Vagrantfile
283
+ - test/cookbooks/noodles/chefignore
284
+ - test/cookbooks/noodles/metadata.rb
285
+ - test/cookbooks/noodles/recipes/default.rb
286
+ - test/cookbooks/water/.gitignore
287
+ - test/cookbooks/water/.kitchen.yml
288
+ - test/cookbooks/water/Berksfile
289
+ - test/cookbooks/water/Gemfile
290
+ - test/cookbooks/water/LICENSE
291
+ - test/cookbooks/water/README.md
292
+ - test/cookbooks/water/Thorfile
293
+ - test/cookbooks/water/Vagrantfile
294
+ - test/cookbooks/water/chefignore
295
+ - test/cookbooks/water/metadata.rb
296
+ - test/cookbooks/water/recipes/default.rb
297
+ has_rdoc: