middleman-core 3.1.0.rc.2 → 3.1.0.rc.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (232) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +2 -1
  3. data/features/capture_html.feature +18 -0
  4. data/features/content_for.feature +3 -3
  5. data/features/v4_extension_callbacks.feature +8 -0
  6. data/fixtures/capture-html-app/config.rb +7 -0
  7. data/fixtures/capture-html-app/source/capture_html_erb.html.erb +5 -0
  8. data/fixtures/capture-html-app/source/capture_html_haml.html.haml +4 -0
  9. data/fixtures/capture-html-app/source/capture_html_slim.html.slim +4 -0
  10. data/fixtures/capture-html-app/source/layouts/capture_html.erb +4 -0
  11. data/fixtures/content-for-app/source/content_for_erb.html.erb +1 -1
  12. data/fixtures/content-for-app/source/content_for_haml.html.haml +1 -1
  13. data/fixtures/content-for-app/source/content_for_slim.html.slim +2 -1
  14. data/fixtures/v4-extension-callbacks/config.rb +26 -0
  15. data/fixtures/v4-extension-callbacks/source/index.html.erb +2 -0
  16. data/lib/middleman-core/core_extensions/extensions.rb +6 -1
  17. data/lib/middleman-core/core_extensions/file_watcher.rb +1 -0
  18. data/lib/middleman-core/core_extensions/rendering.rb +1 -2
  19. data/lib/middleman-core/core_extensions/request.rb +2 -2
  20. data/lib/middleman-core/extensions.rb +21 -0
  21. data/lib/middleman-core/meta_pages/sitemap_resource.rb +4 -1
  22. data/lib/middleman-core/version.rb +1 -1
  23. data/lib/middleman-more/core_extensions/default_helpers.rb +17 -3
  24. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/.document +0 -0
  25. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/.gitignore +0 -0
  26. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/.yardopts +0 -0
  27. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/LICENSE.txt +0 -0
  28. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/README.rdoc +0 -0
  29. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/Rakefile +0 -0
  30. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/bin/padrino +0 -0
  31. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core.rb +58 -4
  32. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/application.rb +40 -16
  33. data/lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/flash.rb +229 -0
  34. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/application/rendering.rb +39 -11
  35. data/lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/rendering/extensions/erubis.rb +55 -0
  36. data/lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/rendering/extensions/haml.rb +26 -0
  37. data/lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/rendering/extensions/slim.rb +14 -0
  38. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/application/routing.rb +133 -37
  39. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/application/showexceptions.rb +0 -0
  40. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/caller.rb +0 -0
  41. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/cli/adapter.rb +0 -0
  42. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/cli/base.rb +41 -38
  43. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/cli/console.rb +0 -0
  44. data/lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/cli/rake.rb +47 -0
  45. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/cli/rake_tasks.rb +9 -14
  46. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/command.rb +0 -0
  47. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/images/404.png +0 -0
  48. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/images/500.png +0 -0
  49. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/loader.rb +23 -9
  50. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/cs.yml +0 -0
  51. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/da.yml +0 -0
  52. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/de.yml +6 -6
  53. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/en.yml +0 -0
  54. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/es.yml +0 -0
  55. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/fr.yml +1 -1
  56. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/hu.yml +0 -0
  57. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/it.yml +0 -0
  58. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/ja.yml +0 -0
  59. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/lv.yml +0 -0
  60. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/nl.yml +0 -0
  61. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/no.yml +0 -0
  62. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/pl.yml +0 -0
  63. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/pt_br.yml +0 -0
  64. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/ro.yml +0 -0
  65. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/ru.yml +1 -1
  66. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/sv.yml +0 -0
  67. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/tr.yml +0 -0
  68. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/uk.yml +0 -0
  69. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/zh_cn.yml +11 -11
  70. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/locale/zh_tw.yml +0 -0
  71. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/logger.rb +48 -32
  72. data/lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/module.rb +58 -0
  73. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/mounter.rb +15 -5
  74. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/reloader.rb +139 -52
  75. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/router.rb +0 -0
  76. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/server.rb +5 -5
  77. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/support_lite.rb +59 -6
  78. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/tasks.rb +0 -0
  79. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/lib/padrino-core/version.rb +1 -1
  80. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/padrino-core.gemspec +10 -5
  81. data/lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/Gemfile +4 -0
  82. data/lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/app/app.rb +3 -0
  83. data/lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/app_gem.gemspec +17 -0
  84. data/lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/lib/app_gem.rb +7 -0
  85. data/lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/lib/app_gem/version.rb +3 -0
  86. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/apps/.components +0 -0
  87. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/apps/.gitignore +0 -0
  88. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/apps/complex.rb +0 -0
  89. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/apps/simple.rb +0 -0
  90. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/dependencies/a.rb +0 -0
  91. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/dependencies/b.rb +0 -0
  92. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/dependencies/c.rb +0 -0
  93. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/dependencies/circular/e.rb +0 -0
  94. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/dependencies/circular/f.rb +0 -0
  95. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/dependencies/circular/g.rb +0 -0
  96. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/fixtures/dependencies/d.rb +0 -0
  97. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/helper.rb +0 -0
  98. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/mini_shoulda.rb +2 -2
  99. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_application.rb +38 -21
  100. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_core.rb +0 -0
  101. data/lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_csrf_protection.rb +80 -0
  102. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_dependencies.rb +0 -0
  103. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_filters.rb +70 -0
  104. data/lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_flash.rb +168 -0
  105. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_locale.rb +0 -0
  106. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_logger.rb +27 -0
  107. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_mounter.rb +24 -2
  108. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_reloader_complex.rb +0 -0
  109. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_reloader_simple.rb +4 -4
  110. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_rendering.rb +75 -4
  111. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_restful_routing.rb +0 -0
  112. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_router.rb +0 -0
  113. data/lib/vendored-middleman-deps/{padrino-core-0.10.7 → padrino-core-0.11.2}/test/test_routing.rb +209 -35
  114. data/lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_support_lite.rb +56 -0
  115. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/.document +0 -0
  116. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/.gitignore +0 -0
  117. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/.yardopts +0 -0
  118. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/LICENSE.txt +0 -0
  119. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/README.rdoc +0 -0
  120. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/Rakefile +0 -0
  121. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers.rb +2 -1
  122. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/asset_tag_helpers.rb +58 -66
  123. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/breadcrumb_helpers.rb +171 -0
  124. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/form_builder/abstract_form_builder.rb +84 -26
  125. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/form_builder/standard_form_builder.rb +0 -0
  126. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/form_helpers.rb +94 -19
  127. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/format_helpers.rb +9 -5
  128. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/cs.yml +0 -0
  129. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/da.yml +0 -0
  130. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/de.yml +0 -0
  131. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/en.yml +0 -0
  132. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/es.yml +0 -0
  133. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/fr.yml +12 -12
  134. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/hu.yml +0 -0
  135. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/it.yml +0 -0
  136. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/ja.yml +0 -0
  137. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/lv.yml +0 -0
  138. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/nl.yml +0 -0
  139. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/no.yml +0 -0
  140. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/pl.yml +0 -0
  141. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/pt_br.yml +2 -2
  142. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/ro.yml +0 -0
  143. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/ru.yml +0 -0
  144. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/sv.yml +0 -0
  145. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/tr.yml +0 -0
  146. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/uk.yml +0 -0
  147. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/zh_cn.yml +13 -14
  148. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/locale/zh_tw.yml +0 -0
  149. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/number_helpers.rb +0 -0
  150. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/output_helpers.rb +45 -5
  151. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/output_helpers/abstract_handler.rb +0 -0
  152. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/output_helpers/erb_handler.rb +3 -3
  153. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/output_helpers/haml_handler.rb +0 -0
  154. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/output_helpers/slim_handler.rb +6 -7
  155. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/render_helpers.rb +2 -2
  156. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/tag_helpers.rb +34 -6
  157. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/lib/padrino-helpers/translation_helpers.rb +0 -0
  158. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/padrino-helpers.gemspec +0 -0
  159. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/app.rb +13 -6
  160. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/capture_concat.erb +2 -2
  161. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/capture_concat.haml +2 -2
  162. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/capture_concat.slim +4 -5
  163. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/content_for.erb +0 -0
  164. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/content_for.haml +0 -0
  165. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/content_for.slim +4 -4
  166. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/content_tag.erb +0 -0
  167. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/content_tag.haml +0 -0
  168. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/content_tag.slim +9 -0
  169. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/current_engine.erb +0 -0
  170. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/current_engine.haml +1 -1
  171. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/current_engine.slim +0 -0
  172. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/fields_for.erb +0 -0
  173. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/fields_for.haml +0 -0
  174. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/fields_for.slim +15 -0
  175. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/form_for.erb +0 -0
  176. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/form_for.haml +0 -0
  177. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/form_for.slim +59 -0
  178. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/form_tag.erb +0 -0
  179. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/form_tag.haml +0 -0
  180. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/form_tag.slim +70 -0
  181. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/link_to.erb +0 -0
  182. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/link_to.haml +0 -0
  183. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/link_to.slim +4 -0
  184. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/mail_to.erb +0 -0
  185. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/mail_to.haml +0 -0
  186. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/mail_to.slim +3 -0
  187. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/meta_tag.erb +0 -0
  188. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/meta_tag.haml +0 -0
  189. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/meta_tag.slim +3 -0
  190. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/partials/_erb.erb +0 -0
  191. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/partials/_haml.haml +0 -0
  192. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/partials/_slim.slim +1 -0
  193. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/simple_partial.erb +0 -0
  194. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/markup_app/views/simple_partial.haml +0 -0
  195. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/simple_partial.slim +1 -0
  196. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/app.rb +7 -0
  197. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/current_engine.haml +0 -0
  198. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/current_engines/_erb.erb +0 -0
  199. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/current_engines/_haml.haml +0 -0
  200. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/current_engines/_slim.slim +0 -0
  201. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/double_capture_erb.erb +3 -0
  202. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/double_capture_haml.haml +2 -0
  203. data/lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/double_capture_slim.slim +2 -0
  204. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/erb/test.erb +0 -0
  205. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/explicit_engine.haml +0 -0
  206. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/haml/test.haml +0 -0
  207. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/template/_user.haml +0 -0
  208. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/template/haml_template.haml +0 -0
  209. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/fixtures/render_app/views/template/some_template.haml +0 -0
  210. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/helper.rb +1 -0
  211. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/test_asset_tag_helpers.rb +24 -5
  212. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/test_form_builder.rb +41 -1
  213. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/test_form_helpers.rb +36 -0
  214. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/test_format_helpers.rb +14 -0
  215. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/test_locale.rb +0 -0
  216. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/test_number_helpers.rb +0 -0
  217. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/test_output_helpers.rb +5 -3
  218. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/test_render_helpers.rb +18 -0
  219. data/lib/vendored-middleman-deps/{padrino-helpers-0.10.7 → padrino-helpers-0.11.2}/test/test_tag_helpers.rb +11 -0
  220. data/middleman-core.gemspec +1 -1
  221. metadata +218 -184
  222. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/rake.rb +0 -25
  223. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_tag.slim +0 -9
  224. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/fields_for.slim +0 -15
  225. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_for.slim +0 -59
  226. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_tag.slim +0 -70
  227. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/link_to.slim +0 -4
  228. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/mail_to.slim +0 -3
  229. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/meta_tag.slim +0 -3
  230. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/partials/_slim.slim +0 -1
  231. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/simple_partial.slim +0 -1
  232. data/spec/middleman-core/sitemap_spec.rb +0 -0
@@ -58,18 +58,21 @@ describe "FormHelpers" do
58
58
  visit '/erb/form_tag'
59
59
  assert_have_selector 'form.simple-form', :action => '/simple'
60
60
  assert_have_selector 'form.advanced-form', :action => '/advanced', :id => 'advanced', :method => 'get'
61
+ assert_have_selector :input, :name => 'authenticity_token'
61
62
  end
62
63
 
63
64
  should "display correct forms in haml" do
64
65
  visit '/haml/form_tag'
65
66
  assert_have_selector 'form.simple-form', :action => '/simple'
66
67
  assert_have_selector 'form.advanced-form', :action => '/advanced', :id => 'advanced', :method => 'get'
68
+ assert_have_selector :input, :name => 'authenticity_token'
67
69
  end
68
70
 
69
71
  should "display correct forms in slim" do
70
72
  visit '/slim/form_tag'
71
73
  assert_have_selector 'form.simple-form', :action => '/simple'
72
74
  assert_have_selector 'form.advanced-form', :action => '/advanced', :id => 'advanced', :method => 'get'
75
+ assert_have_selector :input, :name => 'authenticity_token'
73
76
  end
74
77
  end
75
78
 
@@ -197,6 +200,12 @@ describe "FormHelpers" do
197
200
  assert_has_tag('label[for=username] span.required', :content => "*") { actual_html }
198
201
  end
199
202
 
203
+ should "display label tag in ruby with a block" do
204
+ actual_html = label_tag(:admin, :class => 'long-label') { input_tag :checkbox }
205
+ assert_has_tag(:label, :for => 'admin', :class => 'long-label', :content => "Admin") { actual_html }
206
+ assert_has_tag('label input[type=checkbox]') { actual_html }
207
+ end
208
+
200
209
  should "display label tag in erb for simple form" do
201
210
  visit '/erb/form_tag'
202
211
  assert_have_selector 'form.simple-form label', :count => 9
@@ -204,6 +213,7 @@ describe "FormHelpers" do
204
213
  assert_have_selector 'form.simple-form label', :content => "Password", :for => 'password'
205
214
  assert_have_selector 'form.simple-form label', :content => "Gender", :for => 'gender'
206
215
  end
216
+
207
217
  should "display label tag in erb for advanced form" do
208
218
  visit '/erb/form_tag'
209
219
  assert_have_selector 'form.advanced-form label', :count => 11
@@ -484,6 +494,11 @@ describe "FormHelpers" do
484
494
  assert_has_tag(:input, :type => 'file', :class => "photo", :name => 'photo') { actual_html }
485
495
  end
486
496
 
497
+ should "have an array name with multiple option" do
498
+ actual_html = file_field_tag(:photos, :multiple => true)
499
+ assert_has_tag(:input, :name => 'photos[]') { actual_html }
500
+ end
501
+
487
502
  should "display file field in erb" do
488
503
  visit '/erb/form_tag'
489
504
  assert_have_selector 'form.advanced-form input[type=file]', :count => 1, :name => 'photo', :class => 'upload'
@@ -773,4 +788,25 @@ describe "FormHelpers" do
773
788
  assert_have_selector 'form.advanced-form input[type=image]', :count => 1, :src => "/images/buttons/submit.png?#{@stamp}"
774
789
  end
775
790
  end
791
+
792
+ context 'for #button_to method' do
793
+ should "have a form and set the method properly" do
794
+ actual_html = button_to('Delete', '/users/1', :method => :delete)
795
+ assert_has_tag('form', :action => '/users/1') { actual_html }
796
+ assert_has_tag('form input', :type => 'hidden', :name => "_method", :value => 'delete') { actual_html }
797
+ assert_has_tag('form input', :type => 'hidden', :name => "authenticity_token") { actual_html }
798
+ end
799
+
800
+ should "add a submit button by default if no content is specified" do
801
+ actual_html = button_to('My Delete Button', '/users/1', :method => :delete)
802
+ assert_has_tag('form input', :type => 'submit', :value => 'My Delete Button') { actual_html }
803
+ end
804
+
805
+ should "set specific content inside the form if a block was sent" do
806
+ actual_html = button_to('My Delete Button', '/users/1', :method => :delete) do
807
+ content_tag :button, "My button's content", :type => :submit, :title => "My button"
808
+ end
809
+ assert_has_tag('form button', :type => 'submit', :content => "My button's content", :title => "My button") { actual_html }
810
+ end
811
+ end
776
812
  end
@@ -15,6 +15,7 @@ describe "FormatHelpers" do
15
15
  context 'for #simple_format method' do
16
16
  should "format simple text into html format" do
17
17
  actual_text = simple_format("Here is some basic text...\n...with a line break.")
18
+ assert_equal true, actual_text.html_safe?
18
19
  assert_equal "<p>Here is some basic text...\n<br />...with a line break.</p>", actual_text
19
20
  end
20
21
 
@@ -139,6 +140,11 @@ describe "FormatHelpers" do
139
140
  should "return text escaped if not empty" do
140
141
  assert_equal '&lt;h1&gt;hello&lt;&#x2F;h1&gt;', h!('<h1>hello</h1>')
141
142
  end
143
+ should "mark escaped text as safe" do
144
+ assert_equal false, '<h1>hello</h1>'.html_safe?
145
+ assert_equal true, h('<h1>hello</h1>').html_safe?
146
+ assert_equal true, h!("", "default").html_safe?
147
+ end
142
148
  end
143
149
 
144
150
  context 'for #time_ago_in_words method' do
@@ -213,15 +219,23 @@ describe "FormatHelpers" do
213
219
  context 'for #js_escape_html method' do
214
220
  should "escape double quotes" do
215
221
  assert_equal "\\\"hello\\\"", js_escape_html('"hello"')
222
+ assert_equal "\\\"hello\\\"", js_escape_html(ActiveSupport::SafeBuffer.new('"hello"'))
216
223
  end
217
224
  should "escape single quotes" do
218
225
  assert_equal "\\'hello\\'", js_escape_html("'hello'")
226
+ assert_equal "\\'hello\\'", js_escape_html(ActiveSupport::SafeBuffer.new("'hello'"))
219
227
  end
220
228
  should "escape html tags and breaks" do
221
229
  assert_equal "\\n\\n<p>hello<\\/p>\\n", js_escape_html("\n\r<p>hello</p>\r\n")
230
+ assert_equal "\\n\\n<p>hello<\\/p>\\n", js_escape_html(ActiveSupport::SafeBuffer.new("\n\r<p>hello</p>\r\n"))
222
231
  end
223
232
  should "escape data-confirm attribute" do
224
233
  assert_equal "<data-confirm=\\\"are you sure\\\">", js_escape_html("<data-confirm=\"are you sure\">")
234
+ assert_equal "<data-confirm=\\\"are you sure\\\">", js_escape_html(ActiveSupport::SafeBuffer.new("<data-confirm=\"are you sure\">"))
235
+ end
236
+ should "keep html_safe content html_safe" do
237
+ assert_equal false, js_escape_html('"hello"').html_safe?
238
+ assert_equal true, js_escape_html(ActiveSupport::SafeBuffer.new('"hello"')).html_safe?
225
239
  end
226
240
  end
227
241
  end
@@ -79,7 +79,8 @@ describe "OutputHelpers" do
79
79
 
80
80
  should "work for slim templates" do
81
81
  visit '/slim/capture_concat'
82
- assert_have_selector 'p', :content => "Concat Line 3", :count => 1
82
+ # TODO Get Slim concat working
83
+ # assert_have_selector 'p', :content => "Concat Line 3", :count => 1
83
84
  end
84
85
  end
85
86
 
@@ -97,9 +98,10 @@ describe "OutputHelpers" do
97
98
  assert_have_no_selector 'p', :content => "The ruby block passed in is a template", :class => 'is_template'
98
99
  end
99
100
 
100
- should_eventually "work for slim templates" do
101
+ should "work for slim templates" do
101
102
  visit '/slim/capture_concat'
102
- assert_have_selector 'p', :content => "The slim block passed in is a template", :class => 'is_template'
103
+ # TODO Get Slim template detection working
104
+ # assert_have_selector 'p', :content => "The slim block passed in is a template", :class => 'is_template'
103
105
  assert_have_no_selector 'p', :content => "The ruby block passed in is a template", :class => 'is_template'
104
106
  end
105
107
  end
@@ -72,5 +72,23 @@ describe "RenderHelpers" do
72
72
  assert_have_selector 'p.slim span', :content => "slim"
73
73
  assert_have_selector 'p.end', :content => "haml"
74
74
  end
75
+
76
+ should "capture slim template once and only once" do
77
+ $number_of_captures = 0
78
+ visit '/double_capture_slim'
79
+ assert_equal 1,$number_of_captures
80
+ end
81
+
82
+ should "capture haml template once and only once" do
83
+ $number_of_captures = 0
84
+ visit '/double_capture_haml'
85
+ assert_equal 1,$number_of_captures
86
+ end
87
+
88
+ should "capture erb template once and only once" do
89
+ $number_of_captures = 0
90
+ visit '/double_capture_erb'
91
+ assert_equal 1,$number_of_captures
92
+ end
75
93
  end
76
94
  end
@@ -53,6 +53,17 @@ describe "TagHelpers" do
53
53
  assert_has_tag('p.large#star', :content => "Demo") { actual_html }
54
54
  end
55
55
 
56
+ should "escape non-html-safe content" do
57
+ actual_html = content_tag(:p, :class => 'large', :id => 'star') { "<>" }
58
+ assert_has_tag('p.large#star') { actual_html }
59
+ assert_match('&lt;&gt;', actual_html)
60
+ end
61
+
62
+ should "not escape html-safe content" do
63
+ actual_html = content_tag(:p, :class => 'large', :id => 'star') { "<>" }
64
+ assert_has_tag('p.large#star', :content => "<>") { actual_html }
65
+ end
66
+
56
67
  should "support tags with erb" do
57
68
  visit '/erb/content_tag'
58
69
  assert_have_selector :p, :content => "Test 1", :class => 'test', :id => 'test1'
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
32
32
  s.add_dependency("activesupport", ["~> 3.2.6"])
33
33
 
34
34
  # Watcher
35
- s.add_dependency("listen", ["~> 1.1.3"])
35
+ s.add_dependency("listen", ["~> 1.1.6"])
36
36
 
37
37
  # i18n
38
38
  s.add_dependency("i18n", ["~> 0.6.1"])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0.rc.2
4
+ version: 3.1.0.rc.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Reynolds
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-06-01 00:00:00.000000000 Z
12
+ date: 2013-06-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -107,14 +107,14 @@ dependencies:
107
107
  requirements:
108
108
  - - ~>
109
109
  - !ruby/object:Gem::Version
110
- version: 1.1.3
110
+ version: 1.1.6
111
111
  type: :runtime
112
112
  prerelease: false
113
113
  version_requirements: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - ~>
116
116
  - !ruby/object:Gem::Version
117
- version: 1.1.3
117
+ version: 1.1.6
118
118
  - !ruby/object:Gem::Dependency
119
119
  name: i18n
120
120
  requirement: !ruby/object:Gem::Requirement
@@ -152,6 +152,7 @@ files:
152
152
  - features/automatic_image_sizes.feature
153
153
  - features/builder.feature
154
154
  - features/cache_buster.feature
155
+ - features/capture_html.feature
155
156
  - features/chained_templates.feature
156
157
  - features/clean_build.feature
157
158
  - features/cli_extension.feature
@@ -231,6 +232,7 @@ files:
231
232
  - features/twitter-bootstrap-compile.feature
232
233
  - features/unicode_filecontents.feature
233
234
  - features/unicode_filenames.feature
235
+ - features/v4_extension_callbacks.feature
234
236
  - features/wildcard_page_helper.feature
235
237
  - fixtures/asset-hash-app/config.rb
236
238
  - fixtures/asset-hash-app/lib/middleware.rb
@@ -302,6 +304,11 @@ files:
302
304
  - fixtures/cache-buster-app/source/images/blank.gif
303
305
  - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
304
306
  - fixtures/cache-buster-app/source/stylesheets/site.css.sass
307
+ - fixtures/capture-html-app/config.rb
308
+ - fixtures/capture-html-app/source/capture_html_erb.html.erb
309
+ - fixtures/capture-html-app/source/capture_html_haml.html.haml
310
+ - fixtures/capture-html-app/source/capture_html_slim.html.slim
311
+ - fixtures/capture-html-app/source/layouts/capture_html.erb
305
312
  - fixtures/chained-app/config.rb
306
313
  - fixtures/chained-app/data/article.yml
307
314
  - fixtures/chained-app/source/index.html.str.erb
@@ -865,6 +872,8 @@ files:
865
872
  - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html
866
873
  - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html
867
874
  - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json
875
+ - fixtures/v4-extension-callbacks/config.rb
876
+ - fixtures/v4-extension-callbacks/source/index.html.erb
868
877
  - fixtures/wildcard-app/config.rb
869
878
  - fixtures/wildcard-app/source/admin/index.html.erb
870
879
  - fixtures/wildcard-app/source/admin/page.html.erb
@@ -1095,185 +1104,202 @@ files:
1095
1104
  - lib/vendored-middleman-deps/hooks-0.2.0/test/hooks_test.rb
1096
1105
  - lib/vendored-middleman-deps/hooks-0.2.0/test/inheritable_attribute_test.rb
1097
1106
  - lib/vendored-middleman-deps/hooks-0.2.0/test/test_helper.rb
1098
- - lib/vendored-middleman-deps/padrino-core-0.10.7/.document
1099
- - lib/vendored-middleman-deps/padrino-core-0.10.7/.gitignore
1100
- - lib/vendored-middleman-deps/padrino-core-0.10.7/.yardopts
1101
- - lib/vendored-middleman-deps/padrino-core-0.10.7/LICENSE.txt
1102
- - lib/vendored-middleman-deps/padrino-core-0.10.7/README.rdoc
1103
- - lib/vendored-middleman-deps/padrino-core-0.10.7/Rakefile
1104
- - lib/vendored-middleman-deps/padrino-core-0.10.7/bin/padrino
1105
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core.rb
1106
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/application.rb
1107
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/application/rendering.rb
1108
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/application/routing.rb
1109
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/application/showexceptions.rb
1110
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/caller.rb
1111
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/adapter.rb
1112
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/base.rb
1113
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/console.rb
1114
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/rake.rb
1115
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/rake_tasks.rb
1116
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/command.rb
1117
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/images/404.png
1118
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/images/500.png
1119
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/loader.rb
1120
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/cs.yml
1121
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/da.yml
1122
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/de.yml
1123
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/en.yml
1124
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/es.yml
1125
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/fr.yml
1126
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/hu.yml
1127
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/it.yml
1128
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/ja.yml
1129
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/lv.yml
1130
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/nl.yml
1131
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/no.yml
1132
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/pl.yml
1133
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/pt_br.yml
1134
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/ro.yml
1135
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/ru.yml
1136
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/sv.yml
1137
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/tr.yml
1138
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/uk.yml
1139
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/zh_cn.yml
1140
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/zh_tw.yml
1141
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/logger.rb
1142
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/mounter.rb
1143
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/reloader.rb
1144
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/router.rb
1145
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/server.rb
1146
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/support_lite.rb
1147
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/tasks.rb
1148
- - lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/version.rb
1149
- - lib/vendored-middleman-deps/padrino-core-0.10.7/padrino-core.gemspec
1150
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/apps/.components
1151
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/apps/.gitignore
1152
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/apps/complex.rb
1153
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/apps/simple.rb
1154
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/a.rb
1155
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/b.rb
1156
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/c.rb
1157
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/circular/e.rb
1158
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/circular/f.rb
1159
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/circular/g.rb
1160
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/d.rb
1161
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/helper.rb
1162
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/mini_shoulda.rb
1163
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_application.rb
1164
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_core.rb
1165
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_dependencies.rb
1166
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_filters.rb
1167
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_locale.rb
1168
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_logger.rb
1169
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_mounter.rb
1170
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_reloader_complex.rb
1171
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_reloader_simple.rb
1172
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_rendering.rb
1173
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_restful_routing.rb
1174
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_router.rb
1175
- - lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_routing.rb
1176
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/.document
1177
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/.gitignore
1178
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/.yardopts
1179
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/LICENSE.txt
1180
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/README.rdoc
1181
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/Rakefile
1182
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers.rb
1183
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/asset_tag_helpers.rb
1184
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/form_builder/abstract_form_builder.rb
1185
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/form_builder/standard_form_builder.rb
1186
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/form_helpers.rb
1187
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/format_helpers.rb
1188
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/cs.yml
1189
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/da.yml
1190
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/de.yml
1191
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/en.yml
1192
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/es.yml
1193
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/fr.yml
1194
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/hu.yml
1195
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/it.yml
1196
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/ja.yml
1197
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/lv.yml
1198
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/nl.yml
1199
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/no.yml
1200
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/pl.yml
1201
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/pt_br.yml
1202
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/ro.yml
1203
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/ru.yml
1204
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/sv.yml
1205
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/tr.yml
1206
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/uk.yml
1207
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/zh_cn.yml
1208
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/zh_tw.yml
1209
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/number_helpers.rb
1210
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers.rb
1211
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers/abstract_handler.rb
1212
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers/erb_handler.rb
1213
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers/haml_handler.rb
1214
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers/slim_handler.rb
1215
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/render_helpers.rb
1216
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/tag_helpers.rb
1217
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/translation_helpers.rb
1218
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/padrino-helpers.gemspec
1219
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/app.rb
1220
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/capture_concat.erb
1221
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/capture_concat.haml
1222
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/capture_concat.slim
1223
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_for.erb
1224
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_for.haml
1225
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_for.slim
1226
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_tag.erb
1227
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_tag.haml
1228
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_tag.slim
1229
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/current_engine.erb
1230
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/current_engine.haml
1231
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/current_engine.slim
1232
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/fields_for.erb
1233
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/fields_for.haml
1234
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/fields_for.slim
1235
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_for.erb
1236
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_for.haml
1237
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_for.slim
1238
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_tag.erb
1239
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_tag.haml
1240
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_tag.slim
1241
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/link_to.erb
1242
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/link_to.haml
1243
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/link_to.slim
1244
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/mail_to.erb
1245
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/mail_to.haml
1246
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/mail_to.slim
1247
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/meta_tag.erb
1248
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/meta_tag.haml
1249
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/meta_tag.slim
1250
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/partials/_erb.erb
1251
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/partials/_haml.haml
1252
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/partials/_slim.slim
1253
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/simple_partial.erb
1254
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/simple_partial.haml
1255
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/simple_partial.slim
1256
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/app.rb
1257
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/current_engine.haml
1258
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/current_engines/_erb.erb
1259
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/current_engines/_haml.haml
1260
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/current_engines/_slim.slim
1261
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/erb/test.erb
1262
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/explicit_engine.haml
1263
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/haml/test.haml
1264
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/template/_user.haml
1265
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/template/haml_template.haml
1266
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/template/some_template.haml
1267
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/helper.rb
1268
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_asset_tag_helpers.rb
1269
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_form_builder.rb
1270
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_form_helpers.rb
1271
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_format_helpers.rb
1272
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_locale.rb
1273
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_number_helpers.rb
1274
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_output_helpers.rb
1275
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_render_helpers.rb
1276
- - lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_tag_helpers.rb
1107
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/.document
1108
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/.gitignore
1109
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/.yardopts
1110
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/LICENSE.txt
1111
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/README.rdoc
1112
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/Rakefile
1113
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/bin/padrino
1114
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core.rb
1115
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application.rb
1116
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/flash.rb
1117
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/rendering.rb
1118
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/rendering/extensions/erubis.rb
1119
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/rendering/extensions/haml.rb
1120
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/rendering/extensions/slim.rb
1121
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/routing.rb
1122
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/application/showexceptions.rb
1123
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/caller.rb
1124
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/cli/adapter.rb
1125
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/cli/base.rb
1126
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/cli/console.rb
1127
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/cli/rake.rb
1128
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/cli/rake_tasks.rb
1129
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/command.rb
1130
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/images/404.png
1131
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/images/500.png
1132
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/loader.rb
1133
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/cs.yml
1134
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/da.yml
1135
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/de.yml
1136
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/en.yml
1137
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/es.yml
1138
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/fr.yml
1139
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/hu.yml
1140
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/it.yml
1141
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/ja.yml
1142
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/lv.yml
1143
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/nl.yml
1144
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/no.yml
1145
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/pl.yml
1146
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/pt_br.yml
1147
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/ro.yml
1148
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/ru.yml
1149
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/sv.yml
1150
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/tr.yml
1151
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/uk.yml
1152
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/zh_cn.yml
1153
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/locale/zh_tw.yml
1154
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/logger.rb
1155
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/module.rb
1156
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/mounter.rb
1157
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/reloader.rb
1158
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/router.rb
1159
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/server.rb
1160
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/support_lite.rb
1161
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/tasks.rb
1162
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/lib/padrino-core/version.rb
1163
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/padrino-core.gemspec
1164
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/Gemfile
1165
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/app/app.rb
1166
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/app_gem.gemspec
1167
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/lib/app_gem.rb
1168
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/app_gem/lib/app_gem/version.rb
1169
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/apps/.components
1170
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/apps/.gitignore
1171
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/apps/complex.rb
1172
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/apps/simple.rb
1173
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/dependencies/a.rb
1174
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/dependencies/b.rb
1175
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/dependencies/c.rb
1176
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/dependencies/circular/e.rb
1177
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/dependencies/circular/f.rb
1178
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/dependencies/circular/g.rb
1179
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/fixtures/dependencies/d.rb
1180
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/helper.rb
1181
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/mini_shoulda.rb
1182
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_application.rb
1183
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_core.rb
1184
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_csrf_protection.rb
1185
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_dependencies.rb
1186
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_filters.rb
1187
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_flash.rb
1188
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_locale.rb
1189
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_logger.rb
1190
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_mounter.rb
1191
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_reloader_complex.rb
1192
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_reloader_simple.rb
1193
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_rendering.rb
1194
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_restful_routing.rb
1195
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_router.rb
1196
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_routing.rb
1197
+ - lib/vendored-middleman-deps/padrino-core-0.11.2/test/test_support_lite.rb
1198
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/.document
1199
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/.gitignore
1200
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/.yardopts
1201
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/LICENSE.txt
1202
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/README.rdoc
1203
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/Rakefile
1204
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers.rb
1205
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/asset_tag_helpers.rb
1206
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/breadcrumb_helpers.rb
1207
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/form_builder/abstract_form_builder.rb
1208
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/form_builder/standard_form_builder.rb
1209
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/form_helpers.rb
1210
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/format_helpers.rb
1211
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/cs.yml
1212
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/da.yml
1213
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/de.yml
1214
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/en.yml
1215
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/es.yml
1216
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/fr.yml
1217
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/hu.yml
1218
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/it.yml
1219
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/ja.yml
1220
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/lv.yml
1221
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/nl.yml
1222
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/no.yml
1223
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/pl.yml
1224
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/pt_br.yml
1225
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/ro.yml
1226
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/ru.yml
1227
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/sv.yml
1228
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/tr.yml
1229
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/uk.yml
1230
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/zh_cn.yml
1231
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/locale/zh_tw.yml
1232
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/number_helpers.rb
1233
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/output_helpers.rb
1234
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/output_helpers/abstract_handler.rb
1235
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/output_helpers/erb_handler.rb
1236
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/output_helpers/haml_handler.rb
1237
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/output_helpers/slim_handler.rb
1238
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/render_helpers.rb
1239
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/tag_helpers.rb
1240
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/lib/padrino-helpers/translation_helpers.rb
1241
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/padrino-helpers.gemspec
1242
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/app.rb
1243
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/capture_concat.erb
1244
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/capture_concat.haml
1245
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/capture_concat.slim
1246
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/content_for.erb
1247
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/content_for.haml
1248
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/content_for.slim
1249
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/content_tag.erb
1250
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/content_tag.haml
1251
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/content_tag.slim
1252
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/current_engine.erb
1253
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/current_engine.haml
1254
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/current_engine.slim
1255
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/fields_for.erb
1256
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/fields_for.haml
1257
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/fields_for.slim
1258
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/form_for.erb
1259
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/form_for.haml
1260
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/form_for.slim
1261
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/form_tag.erb
1262
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/form_tag.haml
1263
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/form_tag.slim
1264
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/link_to.erb
1265
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/link_to.haml
1266
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/link_to.slim
1267
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/mail_to.erb
1268
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/mail_to.haml
1269
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/mail_to.slim
1270
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/meta_tag.erb
1271
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/meta_tag.haml
1272
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/meta_tag.slim
1273
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/partials/_erb.erb
1274
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/partials/_haml.haml
1275
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/partials/_slim.slim
1276
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/simple_partial.erb
1277
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/simple_partial.haml
1278
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/markup_app/views/simple_partial.slim
1279
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/app.rb
1280
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/current_engine.haml
1281
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/current_engines/_erb.erb
1282
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/current_engines/_haml.haml
1283
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/current_engines/_slim.slim
1284
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/double_capture_erb.erb
1285
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/double_capture_haml.haml
1286
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/double_capture_slim.slim
1287
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/erb/test.erb
1288
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/explicit_engine.haml
1289
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/haml/test.haml
1290
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/template/_user.haml
1291
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/template/haml_template.haml
1292
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/fixtures/render_app/views/template/some_template.haml
1293
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/helper.rb
1294
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/test_asset_tag_helpers.rb
1295
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/test_form_builder.rb
1296
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/test_form_helpers.rb
1297
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/test_format_helpers.rb
1298
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/test_locale.rb
1299
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/test_number_helpers.rb
1300
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/test_output_helpers.rb
1301
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/test_render_helpers.rb
1302
+ - lib/vendored-middleman-deps/padrino-helpers-0.11.2/test/test_tag_helpers.rb
1277
1303
  - middleman-core.gemspec
1278
1304
  - spec/middleman-core/binary_spec.rb
1279
1305
  - spec/middleman-core/binary_spec/middleman
@@ -1282,7 +1308,6 @@ files:
1282
1308
  - spec/middleman-core/binary_spec/stars.svgz
1283
1309
  - spec/middleman-core/binary_spec/unicode
1284
1310
  - spec/middleman-core/binary_spec/unicode.txt
1285
- - spec/middleman-core/sitemap_spec.rb
1286
1311
  - spec/spec_helper.rb
1287
1312
  homepage: http://middlemanapp.com
1288
1313
  licenses:
@@ -1317,6 +1342,7 @@ test_files:
1317
1342
  - features/automatic_image_sizes.feature
1318
1343
  - features/builder.feature
1319
1344
  - features/cache_buster.feature
1345
+ - features/capture_html.feature
1320
1346
  - features/chained_templates.feature
1321
1347
  - features/clean_build.feature
1322
1348
  - features/cli_extension.feature
@@ -1396,6 +1422,7 @@ test_files:
1396
1422
  - features/twitter-bootstrap-compile.feature
1397
1423
  - features/unicode_filecontents.feature
1398
1424
  - features/unicode_filenames.feature
1425
+ - features/v4_extension_callbacks.feature
1399
1426
  - features/wildcard_page_helper.feature
1400
1427
  - fixtures/asset-hash-app/config.rb
1401
1428
  - fixtures/asset-hash-app/lib/middleware.rb
@@ -1467,6 +1494,11 @@ test_files:
1467
1494
  - fixtures/cache-buster-app/source/images/blank.gif
1468
1495
  - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
1469
1496
  - fixtures/cache-buster-app/source/stylesheets/site.css.sass
1497
+ - fixtures/capture-html-app/config.rb
1498
+ - fixtures/capture-html-app/source/capture_html_erb.html.erb
1499
+ - fixtures/capture-html-app/source/capture_html_haml.html.haml
1500
+ - fixtures/capture-html-app/source/capture_html_slim.html.slim
1501
+ - fixtures/capture-html-app/source/layouts/capture_html.erb
1470
1502
  - fixtures/chained-app/config.rb
1471
1503
  - fixtures/chained-app/data/article.yml
1472
1504
  - fixtures/chained-app/source/index.html.str.erb
@@ -2030,6 +2062,8 @@ test_files:
2030
2062
  - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html
2031
2063
  - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html
2032
2064
  - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json
2065
+ - fixtures/v4-extension-callbacks/config.rb
2066
+ - fixtures/v4-extension-callbacks/source/index.html.erb
2033
2067
  - fixtures/wildcard-app/config.rb
2034
2068
  - fixtures/wildcard-app/source/admin/index.html.erb
2035
2069
  - fixtures/wildcard-app/source/admin/page.html.erb