install_theme 0.4.1 → 0.5.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 (151) hide show
  1. data/History.txt +4 -0
  2. data/Manifest.txt +145 -0
  3. data/lib/install_theme.rb +43 -13
  4. data/spec/expected/rails/bloganje/app/views/layouts/application.html.haml +90 -0
  5. data/spec/expected/rails/bloganje/public/stylesheets/ie-sucks.css +140 -21
  6. data/spec/expected/rails/bloganje/public/stylesheets/sass/style.sass +479 -0
  7. data/spec/expected/rails/djclub/README +243 -0
  8. data/spec/expected/rails/djclub/Rakefile +10 -0
  9. data/spec/expected/rails/djclub/app/controllers/application_controller.rb +10 -0
  10. data/spec/expected/rails/djclub/app/helpers/application_helper.rb +3 -0
  11. data/spec/expected/rails/djclub/app/views/layouts/application.html.erb +19 -0
  12. data/spec/expected/rails/djclub/config/boot.rb +110 -0
  13. data/spec/expected/rails/djclub/config/database.yml +22 -0
  14. data/spec/expected/rails/djclub/config/environment.rb +41 -0
  15. data/spec/expected/rails/djclub/config/environments/development.rb +17 -0
  16. data/spec/expected/rails/djclub/config/environments/production.rb +28 -0
  17. data/spec/expected/rails/djclub/config/environments/test.rb +28 -0
  18. data/spec/expected/rails/djclub/config/initializers/backtrace_silencers.rb +7 -0
  19. data/spec/expected/rails/djclub/config/initializers/inflections.rb +10 -0
  20. data/spec/expected/rails/djclub/config/initializers/mime_types.rb +5 -0
  21. data/spec/expected/rails/djclub/config/initializers/new_rails_defaults.rb +21 -0
  22. data/spec/expected/rails/djclub/config/initializers/session_store.rb +15 -0
  23. data/spec/expected/rails/djclub/config/locales/en.yml +5 -0
  24. data/spec/expected/rails/djclub/config/routes.rb +43 -0
  25. data/spec/expected/rails/djclub/db/seeds.rb +7 -0
  26. data/spec/expected/rails/djclub/doc/README_FOR_APP +2 -0
  27. data/spec/expected/rails/djclub/public/404.html +30 -0
  28. data/spec/expected/rails/djclub/public/422.html +30 -0
  29. data/spec/expected/rails/djclub/public/500.html +30 -0
  30. data/spec/expected/rails/djclub/public/favicon.ico +0 -0
  31. data/spec/expected/rails/djclub/public/images/bodybg.gif +0 -0
  32. data/spec/expected/rails/djclub/public/images/contentbg.gif +0 -0
  33. data/spec/expected/rails/djclub/public/images/djset.gif +0 -0
  34. data/spec/expected/rails/djclub/public/images/footerbg.gif +0 -0
  35. data/spec/expected/rails/djclub/public/images/header.jpg +0 -0
  36. data/spec/expected/rails/djclub/public/images/leftbg.gif +0 -0
  37. data/spec/expected/rails/djclub/public/images/middlebg.gif +0 -0
  38. data/spec/expected/rails/djclub/public/images/navbottom.gif +0 -0
  39. data/spec/expected/rails/djclub/public/images/navtop.gif +0 -0
  40. data/spec/expected/rails/djclub/public/images/photos.jpg +0 -0
  41. data/spec/expected/rails/djclub/public/images/rails.png +0 -0
  42. data/spec/expected/rails/djclub/public/images/rightbg.gif +0 -0
  43. data/spec/expected/rails/djclub/public/images/timetoparty.jpg +0 -0
  44. data/spec/expected/rails/djclub/public/index.html +275 -0
  45. data/spec/expected/rails/djclub/public/javascripts/application.js +2 -0
  46. data/spec/expected/rails/djclub/public/javascripts/controls.js +963 -0
  47. data/spec/expected/rails/djclub/public/javascripts/dragdrop.js +973 -0
  48. data/spec/expected/rails/djclub/public/javascripts/effects.js +1128 -0
  49. data/spec/expected/rails/djclub/public/javascripts/prototype.js +4320 -0
  50. data/spec/expected/rails/djclub/public/robots.txt +5 -0
  51. data/spec/expected/rails/djclub/public/stylesheets/style.css +191 -0
  52. data/spec/expected/rails/djclub/script/about +4 -0
  53. data/spec/expected/rails/djclub/script/console +3 -0
  54. data/spec/expected/rails/djclub/script/dbconsole +3 -0
  55. data/spec/expected/rails/djclub/script/destroy +3 -0
  56. data/spec/expected/rails/djclub/script/generate +3 -0
  57. data/spec/expected/rails/djclub/script/performance/benchmarker +3 -0
  58. data/spec/expected/rails/djclub/script/performance/profiler +3 -0
  59. data/spec/expected/rails/djclub/script/plugin +3 -0
  60. data/spec/expected/rails/djclub/script/runner +3 -0
  61. data/spec/expected/rails/djclub/script/server +3 -0
  62. data/spec/expected/rails/djclub/test/performance/browsing_test.rb +9 -0
  63. data/spec/expected/rails/djclub/test/test_helper.rb +38 -0
  64. data/spec/expected/rails/the-hobbit-website-template/README +243 -0
  65. data/spec/expected/rails/the-hobbit-website-template/Rakefile +10 -0
  66. data/spec/expected/rails/the-hobbit-website-template/app/controllers/application_controller.rb +10 -0
  67. data/spec/expected/rails/the-hobbit-website-template/app/helpers/application_helper.rb +3 -0
  68. data/spec/expected/rails/the-hobbit-website-template/app/views/layouts/application.html.erb +53 -0
  69. data/spec/expected/rails/the-hobbit-website-template/config/boot.rb +110 -0
  70. data/spec/expected/rails/the-hobbit-website-template/config/database.yml +22 -0
  71. data/spec/expected/rails/the-hobbit-website-template/config/environment.rb +41 -0
  72. data/spec/expected/rails/the-hobbit-website-template/config/environments/development.rb +17 -0
  73. data/spec/expected/rails/the-hobbit-website-template/config/environments/production.rb +28 -0
  74. data/spec/expected/rails/the-hobbit-website-template/config/environments/test.rb +28 -0
  75. data/spec/expected/rails/the-hobbit-website-template/config/initializers/backtrace_silencers.rb +7 -0
  76. data/spec/expected/rails/the-hobbit-website-template/config/initializers/inflections.rb +10 -0
  77. data/spec/expected/rails/the-hobbit-website-template/config/initializers/mime_types.rb +5 -0
  78. data/spec/expected/rails/the-hobbit-website-template/config/initializers/new_rails_defaults.rb +21 -0
  79. data/spec/expected/rails/the-hobbit-website-template/config/initializers/session_store.rb +15 -0
  80. data/spec/expected/rails/the-hobbit-website-template/config/locales/en.yml +5 -0
  81. data/spec/expected/rails/the-hobbit-website-template/config/routes.rb +43 -0
  82. data/spec/expected/rails/the-hobbit-website-template/db/seeds.rb +7 -0
  83. data/spec/expected/rails/the-hobbit-website-template/doc/README_FOR_APP +2 -0
  84. data/spec/expected/rails/the-hobbit-website-template/public/404.html +30 -0
  85. data/spec/expected/rails/the-hobbit-website-template/public/422.html +30 -0
  86. data/spec/expected/rails/the-hobbit-website-template/public/500.html +30 -0
  87. data/spec/expected/rails/the-hobbit-website-template/public/favicon.ico +0 -0
  88. data/spec/expected/rails/the-hobbit-website-template/public/images/bg.jpg +0 -0
  89. data/spec/expected/rails/the-hobbit-website-template/public/images/bgcontainer.jpg +0 -0
  90. data/spec/expected/rails/the-hobbit-website-template/public/images/bgcontent.gif +0 -0
  91. data/spec/expected/rails/the-hobbit-website-template/public/images/bgfooter.gif +0 -0
  92. data/spec/expected/rails/the-hobbit-website-template/public/images/divider.gif +0 -0
  93. data/spec/expected/rails/the-hobbit-website-template/public/images/gfx.jpg +0 -0
  94. data/spec/expected/rails/the-hobbit-website-template/public/images/header.jpg +0 -0
  95. data/spec/expected/rails/the-hobbit-website-template/public/images/map.jpg +0 -0
  96. data/spec/expected/rails/the-hobbit-website-template/public/images/pattern.gif +0 -0
  97. data/spec/expected/rails/the-hobbit-website-template/public/images/quote.gif +0 -0
  98. data/spec/expected/rails/the-hobbit-website-template/public/images/rails.png +0 -0
  99. data/spec/expected/rails/the-hobbit-website-template/public/images/stripes.gif +0 -0
  100. data/spec/expected/rails/the-hobbit-website-template/public/index.html +275 -0
  101. data/spec/expected/rails/the-hobbit-website-template/public/javascripts/application.js +2 -0
  102. data/spec/expected/rails/the-hobbit-website-template/public/javascripts/controls.js +963 -0
  103. data/spec/expected/rails/the-hobbit-website-template/public/javascripts/dragdrop.js +973 -0
  104. data/spec/expected/rails/the-hobbit-website-template/public/javascripts/effects.js +1128 -0
  105. data/spec/expected/rails/the-hobbit-website-template/public/javascripts/prototype.js +4320 -0
  106. data/spec/expected/rails/the-hobbit-website-template/public/robots.txt +5 -0
  107. data/spec/expected/rails/the-hobbit-website-template/public/stylesheets/default.css +185 -0
  108. data/spec/expected/rails/the-hobbit-website-template/script/about +4 -0
  109. data/spec/expected/rails/the-hobbit-website-template/script/console +3 -0
  110. data/spec/expected/rails/the-hobbit-website-template/script/dbconsole +3 -0
  111. data/spec/expected/rails/the-hobbit-website-template/script/destroy +3 -0
  112. data/spec/expected/rails/the-hobbit-website-template/script/generate +3 -0
  113. data/spec/expected/rails/the-hobbit-website-template/script/performance/benchmarker +3 -0
  114. data/spec/expected/rails/the-hobbit-website-template/script/performance/profiler +3 -0
  115. data/spec/expected/rails/the-hobbit-website-template/script/plugin +3 -0
  116. data/spec/expected/rails/the-hobbit-website-template/script/runner +3 -0
  117. data/spec/expected/rails/the-hobbit-website-template/script/server +3 -0
  118. data/spec/expected/rails/the-hobbit-website-template/test/performance/browsing_test.rb +9 -0
  119. data/spec/expected/rails/the-hobbit-website-template/test/test_helper.rb +38 -0
  120. data/spec/fixtures/djclub/djclub.psd +0 -0
  121. data/spec/fixtures/djclub/images/bodybg.gif +0 -0
  122. data/spec/fixtures/djclub/images/contentbg.gif +0 -0
  123. data/spec/fixtures/djclub/images/djset.gif +0 -0
  124. data/spec/fixtures/djclub/images/footerbg.gif +0 -0
  125. data/spec/fixtures/djclub/images/header.jpg +0 -0
  126. data/spec/fixtures/djclub/images/leftbg.gif +0 -0
  127. data/spec/fixtures/djclub/images/middlebg.gif +0 -0
  128. data/spec/fixtures/djclub/images/navbottom.gif +0 -0
  129. data/spec/fixtures/djclub/images/navtop.gif +0 -0
  130. data/spec/fixtures/djclub/images/photos.jpg +0 -0
  131. data/spec/fixtures/djclub/images/rightbg.gif +0 -0
  132. data/spec/fixtures/djclub/images/timetoparty.jpg +0 -0
  133. data/spec/fixtures/djclub/index.html +54 -0
  134. data/spec/fixtures/djclub/style.css +191 -0
  135. data/spec/fixtures/the-hobbit-website-template/default.css +185 -0
  136. data/spec/fixtures/the-hobbit-website-template/img/bg.jpg +0 -0
  137. data/spec/fixtures/the-hobbit-website-template/img/bgcontainer.jpg +0 -0
  138. data/spec/fixtures/the-hobbit-website-template/img/bgcontent.gif +0 -0
  139. data/spec/fixtures/the-hobbit-website-template/img/bgfooter.gif +0 -0
  140. data/spec/fixtures/the-hobbit-website-template/img/divider.gif +0 -0
  141. data/spec/fixtures/the-hobbit-website-template/img/gfx.jpg +0 -0
  142. data/spec/fixtures/the-hobbit-website-template/img/header.jpg +0 -0
  143. data/spec/fixtures/the-hobbit-website-template/img/map.jpg +0 -0
  144. data/spec/fixtures/the-hobbit-website-template/img/pattern.gif +0 -0
  145. data/spec/fixtures/the-hobbit-website-template/img/quote.gif +0 -0
  146. data/spec/fixtures/the-hobbit-website-template/img/stripes.gif +0 -0
  147. data/spec/fixtures/the-hobbit-website-template/index.html +158 -0
  148. data/spec/fixtures/the-hobbit-website-template/license-readme.txt +53 -0
  149. data/spec/install_theme_haml_spec.rb +43 -0
  150. data/spec/install_theme_spec.rb +1 -1
  151. metadata +146 -1
@@ -44,7 +44,7 @@ describe InstallTheme do
44
44
  diff.strip.should == ""
45
45
  end
46
46
  end
47
- it { @stdout.should include("<% content_for :head do -%>\n <script>...</script>\n<% end -%>") }
47
+ it { @stdout.should include("<% content_for :head do -%>\n <script></script>\n<% end -%>") }
48
48
  it { @stdout.should include("<% content_for :header do -%>\n My eCommerce Admin area\n<% end -%>") }
49
49
  end
50
50
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: install_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dr Nic Williams
@@ -141,6 +141,7 @@ files:
141
141
  - spec/expected/rails/bloganje/app/controllers/application_controller.rb
142
142
  - spec/expected/rails/bloganje/app/helpers/application_helper.rb
143
143
  - spec/expected/rails/bloganje/app/views/layouts/application.html.erb
144
+ - spec/expected/rails/bloganje/app/views/layouts/application.html.haml
144
145
  - spec/expected/rails/bloganje/config/boot.rb
145
146
  - spec/expected/rails/bloganje/config/database.yml
146
147
  - spec/expected/rails/bloganje/config/environment.rb
@@ -228,6 +229,7 @@ files:
228
229
  - spec/expected/rails/bloganje/public/stylesheets/Copy of theme.css
229
230
  - spec/expected/rails/bloganje/public/stylesheets/ie-sucks.css
230
231
  - spec/expected/rails/bloganje/public/stylesheets/iepngfix.htc
232
+ - spec/expected/rails/bloganje/public/stylesheets/sass/style.sass
231
233
  - spec/expected/rails/bloganje/public/stylesheets/style.css
232
234
  - spec/expected/rails/bloganje/public/stylesheets/switch.css
233
235
  - spec/expected/rails/bloganje/public/stylesheets/theme.css
@@ -237,6 +239,119 @@ files:
237
239
  - spec/expected/rails/bloganje/public/stylesheets/theme4.css
238
240
  - spec/expected/rails/bloganje/test/performance/browsing_test.rb
239
241
  - spec/expected/rails/bloganje/test/test_helper.rb
242
+ - spec/expected/rails/djclub/README
243
+ - spec/expected/rails/djclub/Rakefile
244
+ - spec/expected/rails/djclub/app/controllers/application_controller.rb
245
+ - spec/expected/rails/djclub/app/helpers/application_helper.rb
246
+ - spec/expected/rails/djclub/app/views/layouts/application.html.erb
247
+ - spec/expected/rails/djclub/config/boot.rb
248
+ - spec/expected/rails/djclub/config/database.yml
249
+ - spec/expected/rails/djclub/config/environment.rb
250
+ - spec/expected/rails/djclub/config/environments/development.rb
251
+ - spec/expected/rails/djclub/config/environments/production.rb
252
+ - spec/expected/rails/djclub/config/environments/test.rb
253
+ - spec/expected/rails/djclub/config/initializers/backtrace_silencers.rb
254
+ - spec/expected/rails/djclub/config/initializers/inflections.rb
255
+ - spec/expected/rails/djclub/config/initializers/mime_types.rb
256
+ - spec/expected/rails/djclub/config/initializers/new_rails_defaults.rb
257
+ - spec/expected/rails/djclub/config/initializers/session_store.rb
258
+ - spec/expected/rails/djclub/config/locales/en.yml
259
+ - spec/expected/rails/djclub/config/routes.rb
260
+ - spec/expected/rails/djclub/db/seeds.rb
261
+ - spec/expected/rails/djclub/doc/README_FOR_APP
262
+ - spec/expected/rails/djclub/public/404.html
263
+ - spec/expected/rails/djclub/public/422.html
264
+ - spec/expected/rails/djclub/public/500.html
265
+ - spec/expected/rails/djclub/public/favicon.ico
266
+ - spec/expected/rails/djclub/public/images/bodybg.gif
267
+ - spec/expected/rails/djclub/public/images/contentbg.gif
268
+ - spec/expected/rails/djclub/public/images/djset.gif
269
+ - spec/expected/rails/djclub/public/images/footerbg.gif
270
+ - spec/expected/rails/djclub/public/images/header.jpg
271
+ - spec/expected/rails/djclub/public/images/leftbg.gif
272
+ - spec/expected/rails/djclub/public/images/middlebg.gif
273
+ - spec/expected/rails/djclub/public/images/navbottom.gif
274
+ - spec/expected/rails/djclub/public/images/navtop.gif
275
+ - spec/expected/rails/djclub/public/images/photos.jpg
276
+ - spec/expected/rails/djclub/public/images/rails.png
277
+ - spec/expected/rails/djclub/public/images/rightbg.gif
278
+ - spec/expected/rails/djclub/public/images/timetoparty.jpg
279
+ - spec/expected/rails/djclub/public/index.html
280
+ - spec/expected/rails/djclub/public/javascripts/application.js
281
+ - spec/expected/rails/djclub/public/javascripts/controls.js
282
+ - spec/expected/rails/djclub/public/javascripts/dragdrop.js
283
+ - spec/expected/rails/djclub/public/javascripts/effects.js
284
+ - spec/expected/rails/djclub/public/javascripts/prototype.js
285
+ - spec/expected/rails/djclub/public/robots.txt
286
+ - spec/expected/rails/djclub/public/stylesheets/style.css
287
+ - spec/expected/rails/djclub/script/about
288
+ - spec/expected/rails/djclub/script/console
289
+ - spec/expected/rails/djclub/script/dbconsole
290
+ - spec/expected/rails/djclub/script/destroy
291
+ - spec/expected/rails/djclub/script/generate
292
+ - spec/expected/rails/djclub/script/performance/benchmarker
293
+ - spec/expected/rails/djclub/script/performance/profiler
294
+ - spec/expected/rails/djclub/script/plugin
295
+ - spec/expected/rails/djclub/script/runner
296
+ - spec/expected/rails/djclub/script/server
297
+ - spec/expected/rails/djclub/test/performance/browsing_test.rb
298
+ - spec/expected/rails/djclub/test/test_helper.rb
299
+ - spec/expected/rails/the-hobbit-website-template/README
300
+ - spec/expected/rails/the-hobbit-website-template/Rakefile
301
+ - spec/expected/rails/the-hobbit-website-template/app/controllers/application_controller.rb
302
+ - spec/expected/rails/the-hobbit-website-template/app/helpers/application_helper.rb
303
+ - spec/expected/rails/the-hobbit-website-template/app/views/layouts/application.html.erb
304
+ - spec/expected/rails/the-hobbit-website-template/config/boot.rb
305
+ - spec/expected/rails/the-hobbit-website-template/config/database.yml
306
+ - spec/expected/rails/the-hobbit-website-template/config/environment.rb
307
+ - spec/expected/rails/the-hobbit-website-template/config/environments/development.rb
308
+ - spec/expected/rails/the-hobbit-website-template/config/environments/production.rb
309
+ - spec/expected/rails/the-hobbit-website-template/config/environments/test.rb
310
+ - spec/expected/rails/the-hobbit-website-template/config/initializers/backtrace_silencers.rb
311
+ - spec/expected/rails/the-hobbit-website-template/config/initializers/inflections.rb
312
+ - spec/expected/rails/the-hobbit-website-template/config/initializers/mime_types.rb
313
+ - spec/expected/rails/the-hobbit-website-template/config/initializers/new_rails_defaults.rb
314
+ - spec/expected/rails/the-hobbit-website-template/config/initializers/session_store.rb
315
+ - spec/expected/rails/the-hobbit-website-template/config/locales/en.yml
316
+ - spec/expected/rails/the-hobbit-website-template/config/routes.rb
317
+ - spec/expected/rails/the-hobbit-website-template/db/seeds.rb
318
+ - spec/expected/rails/the-hobbit-website-template/doc/README_FOR_APP
319
+ - spec/expected/rails/the-hobbit-website-template/public/404.html
320
+ - spec/expected/rails/the-hobbit-website-template/public/422.html
321
+ - spec/expected/rails/the-hobbit-website-template/public/500.html
322
+ - spec/expected/rails/the-hobbit-website-template/public/favicon.ico
323
+ - spec/expected/rails/the-hobbit-website-template/public/images/bg.jpg
324
+ - spec/expected/rails/the-hobbit-website-template/public/images/bgcontainer.jpg
325
+ - spec/expected/rails/the-hobbit-website-template/public/images/bgcontent.gif
326
+ - spec/expected/rails/the-hobbit-website-template/public/images/bgfooter.gif
327
+ - spec/expected/rails/the-hobbit-website-template/public/images/divider.gif
328
+ - spec/expected/rails/the-hobbit-website-template/public/images/gfx.jpg
329
+ - spec/expected/rails/the-hobbit-website-template/public/images/header.jpg
330
+ - spec/expected/rails/the-hobbit-website-template/public/images/map.jpg
331
+ - spec/expected/rails/the-hobbit-website-template/public/images/pattern.gif
332
+ - spec/expected/rails/the-hobbit-website-template/public/images/quote.gif
333
+ - spec/expected/rails/the-hobbit-website-template/public/images/rails.png
334
+ - spec/expected/rails/the-hobbit-website-template/public/images/stripes.gif
335
+ - spec/expected/rails/the-hobbit-website-template/public/index.html
336
+ - spec/expected/rails/the-hobbit-website-template/public/javascripts/application.js
337
+ - spec/expected/rails/the-hobbit-website-template/public/javascripts/controls.js
338
+ - spec/expected/rails/the-hobbit-website-template/public/javascripts/dragdrop.js
339
+ - spec/expected/rails/the-hobbit-website-template/public/javascripts/effects.js
340
+ - spec/expected/rails/the-hobbit-website-template/public/javascripts/prototype.js
341
+ - spec/expected/rails/the-hobbit-website-template/public/robots.txt
342
+ - spec/expected/rails/the-hobbit-website-template/public/stylesheets/default.css
343
+ - spec/expected/rails/the-hobbit-website-template/script/about
344
+ - spec/expected/rails/the-hobbit-website-template/script/console
345
+ - spec/expected/rails/the-hobbit-website-template/script/dbconsole
346
+ - spec/expected/rails/the-hobbit-website-template/script/destroy
347
+ - spec/expected/rails/the-hobbit-website-template/script/generate
348
+ - spec/expected/rails/the-hobbit-website-template/script/performance/benchmarker
349
+ - spec/expected/rails/the-hobbit-website-template/script/performance/profiler
350
+ - spec/expected/rails/the-hobbit-website-template/script/plugin
351
+ - spec/expected/rails/the-hobbit-website-template/script/runner
352
+ - spec/expected/rails/the-hobbit-website-template/script/server
353
+ - spec/expected/rails/the-hobbit-website-template/test/performance/browsing_test.rb
354
+ - spec/expected/rails/the-hobbit-website-template/test/test_helper.rb
240
355
  - spec/expected/rails/webresourcedepot/README
241
356
  - spec/expected/rails/webresourcedepot/Rakefile
242
357
  - spec/expected/rails/webresourcedepot/app/controllers/application_controller.rb
@@ -369,6 +484,35 @@ files:
369
484
  - spec/fixtures/bloganje/index.html
370
485
  - spec/fixtures/bloganje/psd/template.psd
371
486
  - spec/fixtures/bloganje/users.html
487
+ - spec/fixtures/djclub/djclub.psd
488
+ - spec/fixtures/djclub/images/bodybg.gif
489
+ - spec/fixtures/djclub/images/contentbg.gif
490
+ - spec/fixtures/djclub/images/djset.gif
491
+ - spec/fixtures/djclub/images/footerbg.gif
492
+ - spec/fixtures/djclub/images/header.jpg
493
+ - spec/fixtures/djclub/images/leftbg.gif
494
+ - spec/fixtures/djclub/images/middlebg.gif
495
+ - spec/fixtures/djclub/images/navbottom.gif
496
+ - spec/fixtures/djclub/images/navtop.gif
497
+ - spec/fixtures/djclub/images/photos.jpg
498
+ - spec/fixtures/djclub/images/rightbg.gif
499
+ - spec/fixtures/djclub/images/timetoparty.jpg
500
+ - spec/fixtures/djclub/index.html
501
+ - spec/fixtures/djclub/style.css
502
+ - spec/fixtures/the-hobbit-website-template/default.css
503
+ - spec/fixtures/the-hobbit-website-template/img/bg.jpg
504
+ - spec/fixtures/the-hobbit-website-template/img/bgcontainer.jpg
505
+ - spec/fixtures/the-hobbit-website-template/img/bgcontent.gif
506
+ - spec/fixtures/the-hobbit-website-template/img/bgfooter.gif
507
+ - spec/fixtures/the-hobbit-website-template/img/divider.gif
508
+ - spec/fixtures/the-hobbit-website-template/img/gfx.jpg
509
+ - spec/fixtures/the-hobbit-website-template/img/header.jpg
510
+ - spec/fixtures/the-hobbit-website-template/img/map.jpg
511
+ - spec/fixtures/the-hobbit-website-template/img/pattern.gif
512
+ - spec/fixtures/the-hobbit-website-template/img/quote.gif
513
+ - spec/fixtures/the-hobbit-website-template/img/stripes.gif
514
+ - spec/fixtures/the-hobbit-website-template/index.html
515
+ - spec/fixtures/the-hobbit-website-template/license-readme.txt
372
516
  - spec/fixtures/webresourcedepot/README.md
373
517
  - spec/fixtures/webresourcedepot/css/all.css
374
518
  - spec/fixtures/webresourcedepot/img/Thumbs.db
@@ -398,6 +542,7 @@ files:
398
542
  - spec/fixtures/webresourcedepot/img/tab.gif
399
543
  - spec/fixtures/webresourcedepot/index.html
400
544
  - spec/install_theme_cli_spec.rb
545
+ - spec/install_theme_haml_spec.rb
401
546
  - spec/install_theme_spec.rb
402
547
  - spec/matchers/have_same_contents_as.rb
403
548
  - spec/spec.opts