middleman-core 3.1.0.beta.3 → 3.1.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (460) hide show
  1. checksums.yaml +4 -4
  2. data/features/asset_hash.feature +135 -0
  3. data/features/asset_host.feature +56 -0
  4. data/features/automatic_image_sizes.feature +16 -0
  5. data/features/cache_buster.feature +42 -0
  6. data/features/coffee-script.feature +22 -0
  7. data/features/compass-sprites.feature +6 -0
  8. data/features/content_for.feature +16 -0
  9. data/features/directory_index.feature +67 -0
  10. data/features/fonts.feature +15 -0
  11. data/features/former_padrino_helpers.feature +27 -0
  12. data/features/gzip.feature +21 -0
  13. data/features/helpers_auto_javascript_include_tag.feature +27 -0
  14. data/features/helpers_auto_stylesheet_link_tag.feature +27 -0
  15. data/features/helpers_form_tag.feature +26 -0
  16. data/features/helpers_link_to.feature +152 -0
  17. data/features/helpers_lorem.feature +6 -0
  18. data/features/helpers_page_classes.feature +17 -0
  19. data/features/helpers_url_for.feature +152 -0
  20. data/features/i18n_builder.feature +148 -0
  21. data/features/i18n_force_locale.feature +13 -0
  22. data/features/i18n_preview.feature +230 -0
  23. data/features/ignore_already_minified.feature +47 -0
  24. data/features/liquid.feature +11 -0
  25. data/features/markdown.feature +13 -0
  26. data/features/markdown_redcarpet.feature +86 -0
  27. data/features/markdown_redcarpet_in_haml.feature +42 -0
  28. data/features/minify_css.feature +127 -0
  29. data/features/minify_javascript.feature +225 -0
  30. data/features/more-clean_build.feature +14 -0
  31. data/features/more-extensionless_text_files.feature +28 -0
  32. data/features/more-frontmatter_page_settings.feature +42 -0
  33. data/features/more-ignore.feature +62 -0
  34. data/features/more-implied_extensions.feature +42 -0
  35. data/features/more-instance_vars.feature +18 -0
  36. data/features/more-sitemap_traversal.feature +73 -0
  37. data/features/more-wildcard_page_helper.feature +10 -0
  38. data/features/nested_layouts.feature +55 -0
  39. data/features/partials.feature +46 -0
  40. data/features/partials_dir.feature +30 -0
  41. data/features/relative_assets.feature +136 -0
  42. data/features/sass-assets-paths.feature +11 -0
  43. data/features/sass_cache_path.feature +22 -0
  44. data/features/sass_partials.feature +54 -0
  45. data/features/scss-support.feature +12 -0
  46. data/features/slim.feature +69 -0
  47. data/features/stylus.feature +55 -0
  48. data/features/twitter-bootstrap-compile.feature +6 -0
  49. data/fixtures/asset-hash-app/config.rb +8 -0
  50. data/fixtures/asset-hash-app/lib/middleware.rb +16 -0
  51. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  52. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  53. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  54. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  55. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  56. data/fixtures/asset-hash-app/source/index.html.erb +311 -0
  57. data/fixtures/asset-hash-app/source/javascripts/application.js +8 -0
  58. data/fixtures/asset-hash-app/source/layout.erb +18 -0
  59. data/fixtures/asset-hash-app/source/other.html.erb +2 -0
  60. data/fixtures/asset-hash-app/source/partials.html.erb +1 -0
  61. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +2 -0
  62. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +4 -0
  63. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +4 -0
  64. data/fixtures/asset-hash-app/source/subdir/index.html.erb +308 -0
  65. data/fixtures/asset-hash-host-app/config.rb +6 -0
  66. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  67. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  68. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  69. data/fixtures/asset-hash-host-app/source/index.html.erb +6 -0
  70. data/fixtures/asset-hash-host-app/source/layout.erb +17 -0
  71. data/fixtures/asset-hash-host-app/source/other.html.erb +2 -0
  72. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +4 -0
  73. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +6 -0
  74. data/fixtures/asset-host-app/config.rb +0 -0
  75. data/fixtures/asset-host-app/source/.htaccess +1 -0
  76. data/fixtures/asset-host-app/source/asset_host.html.erb +1 -0
  77. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  78. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +3 -0
  79. data/fixtures/auto-css-app/config.rb +11 -0
  80. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +1 -0
  81. data/fixtures/auto-css-app/source/auto-css/index.html.erb +1 -0
  82. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +1 -0
  83. data/fixtures/auto-css-app/source/auto-css.html.erb +1 -0
  84. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +3 -0
  85. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  86. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +3 -0
  87. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +3 -0
  88. data/fixtures/auto-js-app/config.rb +11 -0
  89. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +1 -0
  90. data/fixtures/auto-js-app/source/auto-js/index.html.erb +1 -0
  91. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +1 -0
  92. data/fixtures/auto-js-app/source/auto-js.html.erb +1 -0
  93. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +1 -0
  94. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +1 -0
  95. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +1 -0
  96. data/fixtures/auto-js-app/source/javascripts/auto-js.js +1 -0
  97. data/fixtures/automatic-image-size-app/config.rb +0 -0
  98. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +1 -0
  99. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  100. data/fixtures/cache-buster-app/config.rb +0 -0
  101. data/fixtures/cache-buster-app/source/cache-buster.html.erb +3 -0
  102. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  103. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +3 -0
  104. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +1 -0
  105. data/fixtures/clean-dir-app/config.rb +2 -0
  106. data/fixtures/clean-dir-app/source/about.html +1 -0
  107. data/fixtures/coffeescript-app/config.rb +0 -0
  108. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +3 -0
  109. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +3 -0
  110. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +3 -0
  111. data/fixtures/compass-sprites-app/config.rb +0 -0
  112. data/fixtures/compass-sprites-app/source/images/icon/arrow_down.png +0 -0
  113. data/fixtures/compass-sprites-app/source/images/icon/arrow_left.png +0 -0
  114. data/fixtures/compass-sprites-app/source/images/icon/arrow_right.png +0 -0
  115. data/fixtures/compass-sprites-app/source/images/icon/arrow_up.png +0 -0
  116. data/fixtures/compass-sprites-app/source/stylesheets/site.css.scss +3 -0
  117. data/fixtures/content-for-app/config.rb +7 -0
  118. data/fixtures/content-for-app/source/content_for_erb.html.erb +5 -0
  119. data/fixtures/content-for-app/source/content_for_haml.html.haml +4 -0
  120. data/fixtures/content-for-app/source/content_for_slim.html.slim +4 -0
  121. data/fixtures/content-for-app/source/layouts/content_for.erb +4 -0
  122. data/fixtures/default-partials-dir-app/source/_partial.html.erb +1 -0
  123. data/fixtures/default-partials-dir-app/source/index.html.erb +2 -0
  124. data/fixtures/different-engine-layout/source/index.html.str +1 -0
  125. data/fixtures/different-engine-partial/config.rb +0 -0
  126. data/fixtures/different-engine-partial/source/index.html.erb +1 -0
  127. data/fixtures/different-engine-partial/source/layouts/layout.erb +7 -0
  128. data/fixtures/different-engine-partial/source/shared/_footer.str +1 -0
  129. data/fixtures/different-engine-partial/source/shared/_header.erb +1 -0
  130. data/fixtures/fonts-app/config.rb +0 -0
  131. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  132. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  133. data/fixtures/fonts-app/source/stylesheets/fonts.css.sass +5 -0
  134. data/fixtures/gzip-app/config.rb +1 -0
  135. data/fixtures/gzip-app/source/index.html +0 -0
  136. data/fixtures/gzip-app/source/javascripts/test.js +1 -0
  137. data/fixtures/gzip-app/source/stylesheets/test.css +1 -0
  138. data/fixtures/i18n-alt-root-app/locales/en.yml +4 -0
  139. data/fixtures/i18n-alt-root-app/locales/es.yml +7 -0
  140. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +1 -0
  141. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +1 -0
  142. data/fixtures/i18n-alt-root-app/source/layout.erb +1 -0
  143. data/fixtures/i18n-default-app/locales/en.yml +4 -0
  144. data/fixtures/i18n-default-app/locales/es.yml +8 -0
  145. data/fixtures/i18n-default-app/source/localizable/index.html.erb +5 -0
  146. data/fixtures/i18n-force-locale/config.rb +13 -0
  147. data/fixtures/i18n-force-locale/locales/en.yml +3 -0
  148. data/fixtures/i18n-force-locale/locales/es.yml +3 -0
  149. data/fixtures/i18n-force-locale/locales/fr.yml +3 -0
  150. data/fixtures/i18n-force-locale/source/index.haml +2 -0
  151. data/fixtures/i18n-test-app/locales/en.yml +4 -0
  152. data/fixtures/i18n-test-app/locales/es.yml +8 -0
  153. data/fixtures/i18n-test-app/source/CNAME +1 -0
  154. data/fixtures/i18n-test-app/source/layout.erb +8 -0
  155. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +1 -0
  156. data/fixtures/i18n-test-app/source/localizable/index.html.erb +1 -0
  157. data/fixtures/i18n-test-app/source/morning.en.html.erb +1 -0
  158. data/fixtures/i18n-test-app/source/morning.es.html.erb +1 -0
  159. data/fixtures/i18n-test-app/source/password.txt +1 -0
  160. data/fixtures/i18n-test-app/source/stylesheets/site.css +3 -0
  161. data/fixtures/indexable-app/config.rb +4 -0
  162. data/fixtures/indexable-app/source/.htpasswd +1 -0
  163. data/fixtures/liquid-app/config.rb +0 -0
  164. data/fixtures/liquid-app/data/test.yml +4 -0
  165. data/fixtures/liquid-app/data/test2.json +4 -0
  166. data/fixtures/liquid-app/source/_liquid_partial.liquid +1 -0
  167. data/fixtures/liquid-app/source/data2.html.liquid +2 -0
  168. data/fixtures/liquid-app/source/liquid_master.html.liquid +1 -0
  169. data/fixtures/lorem-app/config.rb +1 -0
  170. data/fixtures/lorem-app/source/lorem.html.erb +13 -0
  171. data/fixtures/markdown-app/config.rb +1 -0
  172. data/fixtures/markdown-app/source/autolink.html.markdown +5 -0
  173. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +7 -0
  174. data/fixtures/markdown-app/source/hard_wrap.html.markdown +2 -0
  175. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  176. data/fixtures/markdown-app/source/index.html.markdown +4 -0
  177. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +5 -0
  178. data/fixtures/markdown-app/source/smarty_pants.html.markdown +5 -0
  179. data/fixtures/markdown-app/source/space_after_headers.html.markdown +5 -0
  180. data/fixtures/markdown-app/source/strikethrough.html.markdown +5 -0
  181. data/fixtures/markdown-app/source/superscript.html.markdown +5 -0
  182. data/fixtures/markdown-app/source/tables.html.markdown +8 -0
  183. data/fixtures/markdown-app/source/with_toc_data.html.markdown +3 -0
  184. data/fixtures/markdown-frontmatter-options-app/config.rb +1 -0
  185. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +5 -0
  186. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +7 -0
  187. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +7 -0
  188. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +8 -0
  189. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +10 -0
  190. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +10 -0
  191. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  192. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  193. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +4 -0
  194. data/fixtures/minify-css-app/source/inline-css.html.haml +5 -0
  195. data/fixtures/minify-css-app/source/more-css/site.css +3 -0
  196. data/fixtures/minify-css-app/source/stylesheets/report.css +1 -0
  197. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +5 -0
  198. data/fixtures/minify-js-app/config.rb +0 -0
  199. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +3 -0
  200. data/fixtures/minify-js-app/source/inline-js.html.haml +28 -0
  201. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +3 -0
  202. data/fixtures/minify-js-app/source/javascripts/js_test.js +8 -0
  203. data/fixtures/minify-js-app/source/more-js/other.js +8 -0
  204. data/fixtures/more-extensionless-text-files-app/config.rb +1 -0
  205. data/fixtures/more-extensionless-text-files-app/source/CNAME +1 -0
  206. data/fixtures/more-extensionless-text-files-app/source/LICENSE +1 -0
  207. data/fixtures/more-extensionless-text-files-app/source/README +1 -0
  208. data/fixtures/more-extensionless-text-files-app/source/index.html +1 -0
  209. data/fixtures/more-frontmatter-settings-app/config.rb +4 -0
  210. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  211. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +5 -0
  212. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  213. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +5 -0
  214. data/fixtures/more-ignore-app/source/about.html.erb +1 -0
  215. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  216. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  217. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  218. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  219. data/fixtures/more-ignore-app/source/plain.html +1 -0
  220. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  221. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  222. data/fixtures/more-implied-extensions-app/config.rb +0 -0
  223. data/fixtures/more-implied-extensions-app/source/javascripts/app.coffee +1 -0
  224. data/fixtures/more-implied-extensions-app/source/stylesheets/style.scss +3 -0
  225. data/fixtures/more-implied-extensions-app/source/stylesheets/style2.sass +3 -0
  226. data/fixtures/more-implied-extensions-app/source/stylesheets/style3.less +4 -0
  227. data/fixtures/more-implied-extensions-app/source/test.haml +4 -0
  228. data/fixtures/more-implied-extensions-app/source/test2.markdown +3 -0
  229. data/fixtures/more-implied-extensions-app/source/test3.slim +3 -0
  230. data/fixtures/more-implied-extensions-app/source/test4.liquid +1 -0
  231. data/fixtures/more-instance-vars-app/config.rb +0 -0
  232. data/fixtures/more-instance-vars-app/source/_vartial.erb +5 -0
  233. data/fixtures/more-instance-vars-app/source/instance-var-set.html.erb +2 -0
  234. data/fixtures/more-instance-vars-app/source/layout.erb +3 -0
  235. data/fixtures/more-instance-vars-app/source/no-instance-var.html.erb +1 -0
  236. data/fixtures/more-preview-app/config.rb +0 -0
  237. data/fixtures/more-preview-app/source/content.html.erb +1 -0
  238. data/fixtures/more-preview-app/source/layout.erb +1 -0
  239. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +2 -0
  240. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +2 -0
  241. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +4 -0
  242. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +4 -0
  243. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +2 -0
  244. data/fixtures/more-traversal-app/config.rb +7 -0
  245. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  246. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  247. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  248. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  249. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  250. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  251. data/fixtures/more-traversal-app/source/layout.erb +21 -0
  252. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  253. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  254. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  255. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  256. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  257. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  258. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  259. data/fixtures/nested-layout-app/config.rb +1 -0
  260. data/fixtures/nested-layout-app/source/another.html.markdown +7 -0
  261. data/fixtures/nested-layout-app/source/data-one.html.erb +5 -0
  262. data/fixtures/nested-layout-app/source/data-two.html.erb +5 -0
  263. data/fixtures/nested-layout-app/source/haml-test.html.markdown +7 -0
  264. data/fixtures/nested-layout-app/source/index.html.erb +6 -0
  265. data/fixtures/nested-layout-app/source/layouts/inner.erb +4 -0
  266. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +3 -0
  267. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +3 -0
  268. data/fixtures/nested-layout-app/source/layouts/master.erb +3 -0
  269. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +3 -0
  270. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +3 -0
  271. data/fixtures/nested-layout-app/source/layouts/outer.erb +4 -0
  272. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +3 -0
  273. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +3 -0
  274. data/fixtures/nested-layout-app/source/slim-test.html.markdown +7 -0
  275. data/fixtures/padrino-helpers-app/config.rb +0 -0
  276. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +6 -0
  277. data/fixtures/page-classes-app/config.rb +4 -0
  278. data/fixtures/page-classes-app/source/page-classes.html.erb +1 -0
  279. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +1 -0
  280. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +1 -0
  281. data/fixtures/partials-app/config.rb +0 -0
  282. data/fixtures/partials-app/source/_locals.erb +1 -0
  283. data/fixtures/partials-app/source/_main.erb +1 -0
  284. data/fixtures/partials-app/source/_main.str +1 -0
  285. data/fixtures/partials-app/source/index.html.erb +3 -0
  286. data/fixtures/partials-app/source/locals.html.erb +1 -0
  287. data/fixtures/partials-app/source/second.html.str +3 -0
  288. data/fixtures/partials-app/source/shared/_footer.erb +1 -0
  289. data/fixtures/partials-app/source/shared/_header.erb +1 -0
  290. data/fixtures/partials-app/source/shared/snippet.erb +1 -0
  291. data/fixtures/partials-app/source/sub/_local.erb +1 -0
  292. data/fixtures/partials-app/source/sub/index.html.erb +3 -0
  293. data/fixtures/partials-app/source/using_snippet.html.erb +1 -0
  294. data/fixtures/partials-dir-app/source/index.html.erb +2 -0
  295. data/fixtures/partials-dir-app/source/nested/partials/_partial.html.erb +1 -0
  296. data/fixtures/partials-dir-app/source/partials/_partial.html.erb +1 -0
  297. data/fixtures/passthrough-app/source/.htaccess +1 -0
  298. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +3 -0
  299. data/fixtures/passthrough-app/source/inline-css.html.haml +4 -0
  300. data/fixtures/passthrough-app/source/inline-js.html.haml +28 -0
  301. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +3 -0
  302. data/fixtures/passthrough-app/source/javascripts/js_test.js +8 -0
  303. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +1 -0
  304. data/fixtures/relative-app/config.rb +0 -0
  305. data/fixtures/relative-app/source/images/blank.gif +0 -0
  306. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +3 -0
  307. data/fixtures/relative-assets-app/config.rb +1 -0
  308. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  309. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  310. data/fixtures/relative-assets-app/source/relative_image.html.erb +8 -0
  311. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +3 -0
  312. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +1 -0
  313. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +1 -0
  314. data/fixtures/sass-assets-path-app/config.rb +4 -0
  315. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +2 -0
  316. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +16 -0
  317. data/fixtures/sass-cache-path-custom-app/config.rb +3 -0
  318. data/fixtures/sass-cache-path-custom-app/source/stylesheets/plain.css.sass +4 -0
  319. data/fixtures/sass-cache-path-default-app/config.rb +3 -0
  320. data/fixtures/sass-cache-path-default-app/source/stylesheets/plain.css.sass +4 -0
  321. data/fixtures/scss-app/config.rb +0 -0
  322. data/fixtures/scss-app/source/stylesheets/layout.css.sass +2 -0
  323. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +1 -0
  324. data/fixtures/stylus-preview-app/config.rb +0 -0
  325. data/fixtures/stylus-preview-app/source/content.html.erb +1 -0
  326. data/fixtures/stylus-preview-app/source/layout.erb +1 -0
  327. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +2 -0
  328. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +2 -0
  329. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +4 -0
  330. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +4 -0
  331. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +2 -0
  332. data/fixtures/twitter-bootstrap-app/config.rb +0 -0
  333. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.gitignore +36 -0
  334. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.travis.yml +3 -0
  335. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/LICENSE +176 -0
  336. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/README.md +137 -0
  337. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings-white.png +0 -0
  338. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings.png +0 -0
  339. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/.jshintrc +10 -0
  340. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/README.md +112 -0
  341. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-alert.js +90 -0
  342. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-button.js +96 -0
  343. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-carousel.js +169 -0
  344. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-collapse.js +157 -0
  345. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-dropdown.js +100 -0
  346. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-modal.js +218 -0
  347. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-popover.js +98 -0
  348. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-scrollspy.js +151 -0
  349. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tab.js +135 -0
  350. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tooltip.js +275 -0
  351. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-transition.js +61 -0
  352. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-typeahead.js +285 -0
  353. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/index.html +54 -0
  354. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/phantom.js +63 -0
  355. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/server.js +14 -0
  356. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-alert.js +56 -0
  357. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-button.js +77 -0
  358. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-carousel.js +28 -0
  359. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-collapse.js +54 -0
  360. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-dropdown.js +87 -0
  361. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-modal.js +114 -0
  362. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-phantom.js +21 -0
  363. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-popover.js +93 -0
  364. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-scrollspy.js +31 -0
  365. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tab.js +61 -0
  366. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tooltip.js +155 -0
  367. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-transition.js +13 -0
  368. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-typeahead.js +148 -0
  369. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/jquery.js +9252 -0
  370. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.css +232 -0
  371. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.js +1510 -0
  372. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_accordion.less +33 -0
  373. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_alerts.less +58 -0
  374. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_breadcrumbs.less +24 -0
  375. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_button-groups.less +191 -0
  376. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_buttons.less +191 -0
  377. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_carousel.less +121 -0
  378. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_close.less +29 -0
  379. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_code.less +57 -0
  380. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less +20 -0
  381. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_dropdowns.less +143 -0
  382. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_forms.less +583 -0
  383. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_grid.less +5 -0
  384. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_hero-unit.less +22 -0
  385. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_labels-badges.less +55 -0
  386. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_layouts.less +17 -0
  387. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_mixins.less +646 -0
  388. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_modals.less +90 -0
  389. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navbar.less +358 -0
  390. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navs.less +363 -0
  391. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pager.less +36 -0
  392. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pagination.less +56 -0
  393. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_popovers.less +49 -0
  394. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_progress-bars.less +117 -0
  395. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_reset.less +131 -0
  396. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-1200px-min.less +26 -0
  397. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-767px-max.less +149 -0
  398. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-768px-979px.less +17 -0
  399. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-navbar.less +153 -0
  400. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-utilities.less +41 -0
  401. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_scaffolding.less +29 -0
  402. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_sprites.less +191 -0
  403. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tables.less +176 -0
  404. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_thumbnails.less +47 -0
  405. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tooltip.less +35 -0
  406. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_type.less +232 -0
  407. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less +23 -0
  408. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_variables.less +206 -0
  409. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_wells.less +27 -0
  410. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/bootstrap.less +62 -0
  411. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/responsive.less +48 -0
  412. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.css +52 -0
  413. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.html +917 -0
  414. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html +179 -0
  415. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html +108 -0
  416. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json +25 -0
  417. data/fixtures/wildcard-directory-index-app/config.rb +2 -0
  418. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +1 -0
  419. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +1 -0
  420. data/fixtures/wildcard-directory-index-app/source/index.html.erb +1 -0
  421. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +2 -0
  422. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +2 -0
  423. data/lib/middleman-core/cli/build.rb +8 -5
  424. data/lib/middleman-core/extensions.rb +0 -5
  425. data/lib/middleman-core/meta_pages/sitemap_resource.rb +2 -0
  426. data/lib/middleman-core/preview_server.rb +1 -1
  427. data/lib/middleman-core/templates/shared/Gemfile.tt +1 -1
  428. data/lib/middleman-core/util.rb +9 -7
  429. data/lib/middleman-core/version.rb +1 -1
  430. data/lib/middleman-core.rb +1 -0
  431. data/lib/middleman-more/core_extensions/compass.rb +75 -0
  432. data/lib/middleman-more/core_extensions/default_helpers.rb +235 -0
  433. data/lib/middleman-more/core_extensions/i18n.rb +182 -0
  434. data/lib/middleman-more/extensions/asset_hash.rb +114 -0
  435. data/lib/middleman-more/extensions/asset_host.rb +50 -0
  436. data/lib/middleman-more/extensions/automatic_image_sizes/fastimage.rb +287 -0
  437. data/lib/middleman-more/extensions/automatic_image_sizes.rb +42 -0
  438. data/lib/middleman-more/extensions/cache_buster.rb +56 -0
  439. data/lib/middleman-more/extensions/directory_indexes.rb +24 -0
  440. data/lib/middleman-more/extensions/gzip.rb +75 -0
  441. data/lib/middleman-more/extensions/lorem.rb +176 -0
  442. data/lib/middleman-more/extensions/minify_css.rb +77 -0
  443. data/lib/middleman-more/extensions/minify_javascript.rb +83 -0
  444. data/lib/middleman-more/extensions/relative_assets.rb +29 -0
  445. data/lib/middleman-more/templates/smacss/source/_footer.haml +1 -0
  446. data/lib/middleman-more/templates/smacss/source/index.html.haml +1 -0
  447. data/lib/middleman-more/templates/smacss/source/layouts/layout.haml +13 -0
  448. data/lib/middleman-more/templates/smacss/source/stylesheets/base/README.markdown +11 -0
  449. data/lib/middleman-more/templates/smacss/source/stylesheets/base/base.scss +1 -0
  450. data/lib/middleman-more/templates/smacss/source/stylesheets/base/normalize.scss +375 -0
  451. data/lib/middleman-more/templates/smacss/source/stylesheets/layout/README.markdown +9 -0
  452. data/lib/middleman-more/templates/smacss/source/stylesheets/modules/README.markdown +9 -0
  453. data/lib/middleman-more/templates/smacss/source/stylesheets/states/README.markdown +12 -0
  454. data/lib/middleman-more/templates/smacss/source/stylesheets/style.css.scss +12 -0
  455. data/lib/middleman-more/templates/smacss.rb +30 -0
  456. data/lib/middleman-more.rb +102 -0
  457. data/middleman-core.gemspec +4 -1
  458. metadata +885 -7
  459. data/.cane +0 -2
  460. data/.cane-exclusions.yml +0 -5
@@ -0,0 +1,54 @@
1
+ $(function () {
2
+
3
+ module("bootstrap-collapse")
4
+
5
+ test("should be defined on jquery object", function () {
6
+ ok($(document.body).collapse, 'collapse method is defined')
7
+ })
8
+
9
+ test("should return element", function () {
10
+ ok($(document.body).collapse()[0] == document.body, 'document.body returned')
11
+ })
12
+
13
+ test("should show a collapsed element", function () {
14
+ var el = $('<div class="collapse"></div>').collapse('show')
15
+ ok(el.hasClass('in'), 'has class in')
16
+ ok(/height/.test(el.attr('style')), 'has height set')
17
+ })
18
+
19
+ test("should hide a collapsed element", function () {
20
+ var el = $('<div class="collapse"></div>').collapse('hide')
21
+ ok(!el.hasClass('in'), 'does not have class in')
22
+ ok(/height/.test(el.attr('style')), 'has height set')
23
+ })
24
+
25
+ test("should not fire shown when show is prevented", function () {
26
+ $.support.transition = false
27
+ stop();
28
+ $('<div class="collapse"/>')
29
+ .bind('show', function (e) {
30
+ e.preventDefault();
31
+ ok(true);
32
+ start();
33
+ })
34
+ .bind('shown', function () {
35
+ ok(false);
36
+ })
37
+ .collapse('show')
38
+ })
39
+
40
+ test("should reset style to auto after finishing opening collapse", function () {
41
+ $.support.transition = false
42
+ stop();
43
+ $('<div class="collapse" style="height: 0px"/>')
44
+ .bind('show', function () {
45
+ ok(this.style.height == '0px')
46
+ })
47
+ .bind('shown', function () {
48
+ ok(this.style.height == 'auto')
49
+ start()
50
+ })
51
+ .collapse('show')
52
+ })
53
+
54
+ })
@@ -0,0 +1,87 @@
1
+ $(function () {
2
+
3
+ module("bootstrap-dropdowns")
4
+
5
+ test("should be defined on jquery object", function () {
6
+ ok($(document.body).dropdown, 'dropdown method is defined')
7
+ })
8
+
9
+ test("should return element", function () {
10
+ ok($(document.body).dropdown()[0] == document.body, 'document.body returned')
11
+ })
12
+
13
+ test("should not open dropdown if target is disabled", function () {
14
+ var dropdownHTML = '<ul class="tabs">'
15
+ + '<li class="dropdown">'
16
+ + '<button disabled href="#" class="btn dropdown-toggle" data-toggle="dropdown">Dropdown</button>'
17
+ + '<ul class="dropdown-menu">'
18
+ + '<li><a href="#">Secondary link</a></li>'
19
+ + '<li><a href="#">Something else here</a></li>'
20
+ + '<li class="divider"></li>'
21
+ + '<li><a href="#">Another link</a></li>'
22
+ + '</ul>'
23
+ + '</li>'
24
+ + '</ul>'
25
+ , dropdown = $(dropdownHTML).find('[data-toggle="dropdown"]').dropdown().click()
26
+
27
+ ok(!dropdown.parent('.dropdown').hasClass('open'), 'open class added on click')
28
+ })
29
+
30
+ test("should not open dropdown if target is disabled", function () {
31
+ var dropdownHTML = '<ul class="tabs">'
32
+ + '<li class="dropdown">'
33
+ + '<button href="#" class="btn dropdown-toggle disabled" data-toggle="dropdown">Dropdown</button>'
34
+ + '<ul class="dropdown-menu">'
35
+ + '<li><a href="#">Secondary link</a></li>'
36
+ + '<li><a href="#">Something else here</a></li>'
37
+ + '<li class="divider"></li>'
38
+ + '<li><a href="#">Another link</a></li>'
39
+ + '</ul>'
40
+ + '</li>'
41
+ + '</ul>'
42
+ , dropdown = $(dropdownHTML).find('[data-toggle="dropdown"]').dropdown().click()
43
+
44
+ ok(!dropdown.parent('.dropdown').hasClass('open'), 'open class added on click')
45
+ })
46
+
47
+ test("should add class open to menu if clicked", function () {
48
+ var dropdownHTML = '<ul class="tabs">'
49
+ + '<li class="dropdown">'
50
+ + '<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown</a>'
51
+ + '<ul class="dropdown-menu">'
52
+ + '<li><a href="#">Secondary link</a></li>'
53
+ + '<li><a href="#">Something else here</a></li>'
54
+ + '<li class="divider"></li>'
55
+ + '<li><a href="#">Another link</a></li>'
56
+ + '</ul>'
57
+ + '</li>'
58
+ + '</ul>'
59
+ , dropdown = $(dropdownHTML).find('[data-toggle="dropdown"]').dropdown().click()
60
+
61
+ ok(dropdown.parent('.dropdown').hasClass('open'), 'open class added on click')
62
+ })
63
+
64
+ test("should remove open class if body clicked", function () {
65
+ var dropdownHTML = '<ul class="tabs">'
66
+ + '<li class="dropdown">'
67
+ + '<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown</a>'
68
+ + '<ul class="dropdown-menu">'
69
+ + '<li><a href="#">Secondary link</a></li>'
70
+ + '<li><a href="#">Something else here</a></li>'
71
+ + '<li class="divider"></li>'
72
+ + '<li><a href="#">Another link</a></li>'
73
+ + '</ul>'
74
+ + '</li>'
75
+ + '</ul>'
76
+ , dropdown = $(dropdownHTML)
77
+ .appendTo('#qunit-fixture')
78
+ .find('[data-toggle="dropdown"]')
79
+ .dropdown()
80
+ .click()
81
+ ok(dropdown.parent('.dropdown').hasClass('open'), 'open class added on click')
82
+ $('body').click()
83
+ ok(!dropdown.parent('.dropdown').hasClass('open'), 'open class removed')
84
+ dropdown.remove()
85
+ })
86
+
87
+ })
@@ -0,0 +1,114 @@
1
+ $(function () {
2
+
3
+ module("bootstrap-modal")
4
+
5
+ test("should be defined on jquery object", function () {
6
+ var div = $("<div id='modal-test'></div>")
7
+ ok(div.modal, 'modal method is defined')
8
+ })
9
+
10
+ test("should return element", function () {
11
+ var div = $("<div id='modal-test'></div>")
12
+ ok(div.modal() == div, 'document.body returned')
13
+ $('#modal-test').remove()
14
+ })
15
+
16
+ test("should expose defaults var for settings", function () {
17
+ ok($.fn.modal.defaults, 'default object exposed')
18
+ })
19
+
20
+ test("should insert into dom when show method is called", function () {
21
+ stop()
22
+ $.support.transition = false
23
+ $("<div id='modal-test'></div>")
24
+ .bind("shown", function () {
25
+ ok($('#modal-test').length, 'modal insterted into dom')
26
+ $(this).remove()
27
+ start()
28
+ })
29
+ .modal("show")
30
+ })
31
+
32
+ test("should fire show event", function () {
33
+ stop()
34
+ $.support.transition = false
35
+ $("<div id='modal-test'></div>")
36
+ .bind("show", function () {
37
+ ok(true, "show was called")
38
+ })
39
+ .bind("shown", function () {
40
+ $(this).remove()
41
+ start()
42
+ })
43
+ .modal("show")
44
+ })
45
+
46
+ test("should not fire shown when default prevented", function () {
47
+ stop()
48
+ $.support.transition = false
49
+ $("<div id='modal-test'></div>")
50
+ .bind("show", function (e) {
51
+ e.preventDefault()
52
+ ok(true, "show was called")
53
+ start()
54
+ })
55
+ .bind("shown", function () {
56
+ ok(false, "shown was called")
57
+ })
58
+ .modal("show")
59
+ })
60
+
61
+ test("should hide modal when hide is called", function () {
62
+ stop()
63
+ $.support.transition = false
64
+
65
+ $("<div id='modal-test'></div>")
66
+ .bind("shown", function () {
67
+ ok($('#modal-test').is(":visible"), 'modal visible')
68
+ ok($('#modal-test').length, 'modal insterted into dom')
69
+ $(this).modal("hide")
70
+ })
71
+ .bind("hidden", function() {
72
+ ok(!$('#modal-test').is(":visible"), 'modal hidden')
73
+ $('#modal-test').remove()
74
+ start()
75
+ })
76
+ .modal("show")
77
+ })
78
+
79
+ test("should toggle when toggle is called", function () {
80
+ stop()
81
+ $.support.transition = false
82
+ var div = $("<div id='modal-test'></div>")
83
+ div
84
+ .bind("shown", function () {
85
+ ok($('#modal-test').is(":visible"), 'modal visible')
86
+ ok($('#modal-test').length, 'modal insterted into dom')
87
+ div.modal("toggle")
88
+ })
89
+ .bind("hidden", function() {
90
+ ok(!$('#modal-test').is(":visible"), 'modal hidden')
91
+ div.remove()
92
+ start()
93
+ })
94
+ .modal("toggle")
95
+ })
96
+
97
+ test("should remove from dom when click [data-dismiss=modal]", function () {
98
+ stop()
99
+ $.support.transition = false
100
+ var div = $("<div id='modal-test'><span class='close' data-dismiss='modal'></span></div>")
101
+ div
102
+ .bind("shown", function () {
103
+ ok($('#modal-test').is(":visible"), 'modal visible')
104
+ ok($('#modal-test').length, 'modal insterted into dom')
105
+ div.find('.close').click()
106
+ })
107
+ .bind("hidden", function() {
108
+ ok(!$('#modal-test').is(":visible"), 'modal hidden')
109
+ div.remove()
110
+ start()
111
+ })
112
+ .modal("toggle")
113
+ })
114
+ })
@@ -0,0 +1,21 @@
1
+ // Logging setup for phantom integration
2
+ // adapted from Modernizr
3
+
4
+ QUnit.begin = function () {
5
+ console.log("Starting test suite")
6
+ console.log("================================================\n")
7
+ }
8
+
9
+ QUnit.moduleDone = function (opts) {
10
+ if (opts.failed === 0) {
11
+ console.log("\u2714 All tests passed in '" + opts.name + "' module")
12
+ } else {
13
+ console.log("\u2716 " + opts.failed + " tests failed in '" + opts.name + "' module")
14
+ }
15
+ }
16
+
17
+ QUnit.done = function (opts) {
18
+ console.log("\n================================================")
19
+ console.log("Tests completed in " + opts.runtime + " milliseconds")
20
+ console.log(opts.passed + " tests of " + opts.total + " passed, " + opts.failed + " failed.")
21
+ }
@@ -0,0 +1,93 @@
1
+ $(function () {
2
+
3
+ module("bootstrap-popover")
4
+
5
+ test("should be defined on jquery object", function () {
6
+ var div = $('<div></div>')
7
+ ok(div.popover, 'popover method is defined')
8
+ })
9
+
10
+ test("should return element", function () {
11
+ var div = $('<div></div>')
12
+ ok(div.popover() == div, 'document.body returned')
13
+ })
14
+
15
+ test("should render popover element", function () {
16
+ $.support.transition = false
17
+ var popover = $('<a href="#" title="mdo" data-content="http://twitter.com/mdo">@mdo</a>')
18
+ .appendTo('#qunit-fixture')
19
+ .popover('show')
20
+
21
+ ok($('.popover').length, 'popover was inserted')
22
+ popover.popover('hide')
23
+ ok(!$(".popover").length, 'popover removed')
24
+ })
25
+
26
+ test("should store popover instance in popover data object", function () {
27
+ $.support.transition = false
28
+ var popover = $('<a href="#" title="mdo" data-content="http://twitter.com/mdo">@mdo</a>')
29
+ .popover()
30
+
31
+ ok(!!popover.data('popover'), 'popover instance exists')
32
+ })
33
+
34
+ test("should get title and content from options", function () {
35
+ $.support.transition = false
36
+ var popover = $('<a href="#">@fat</a>')
37
+ .appendTo('#qunit-fixture')
38
+ .popover({
39
+ title: function () {
40
+ return '@fat'
41
+ }
42
+ , content: function () {
43
+ return 'loves writing tests (╯°□°)╯︵ ┻━┻'
44
+ }
45
+ })
46
+
47
+ popover.popover('show')
48
+
49
+ ok($('.popover').length, 'popover was inserted')
50
+ equals($('.popover .popover-title').text(), '@fat', 'title correctly inserted')
51
+ equals($('.popover .popover-content').text(), 'loves writing tests (╯°□°)╯︵ ┻━┻', 'content correctly inserted')
52
+
53
+ popover.popover('hide')
54
+ ok(!$('.popover').length, 'popover was removed')
55
+ $('#qunit-fixture').empty()
56
+ })
57
+
58
+ test("should get title and content from attributes", function () {
59
+ $.support.transition = false
60
+ var popover = $('<a href="#" title="@mdo" data-content="loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻" >@mdo</a>')
61
+ .appendTo('#qunit-fixture')
62
+ .popover()
63
+ .popover('show')
64
+
65
+ ok($('.popover').length, 'popover was inserted')
66
+ equals($('.popover .popover-title').text(), '@mdo', 'title correctly inserted')
67
+ equals($('.popover .popover-content').text(), "loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻", 'content correctly inserted')
68
+
69
+ popover.popover('hide')
70
+ ok(!$('.popover').length, 'popover was removed')
71
+ $('#qunit-fixture').empty()
72
+ })
73
+
74
+ test("should respect custom classes", function() {
75
+ $.support.transition = false
76
+ var popover = $('<a href="#">@fat</a>')
77
+ .appendTo('#qunit-fixture')
78
+ .popover({
79
+ title: 'Test'
80
+ , content: 'Test'
81
+ , template: '<div class="popover foobar"><div class="arrow"></div><div class="inner"><h3 class="title"></h3><div class="content"><p></p></div></div></div>'
82
+ })
83
+
84
+ popover.popover('show')
85
+
86
+ ok($('.popover').length, 'popover was inserted')
87
+ ok($('.popover').hasClass('foobar'), 'custom class is present')
88
+
89
+ popover.popover('hide')
90
+ ok(!$('.popover').length, 'popover was removed')
91
+ $('#qunit-fixture').empty()
92
+ })
93
+ })
@@ -0,0 +1,31 @@
1
+ $(function () {
2
+
3
+ module("bootstrap-scrollspy")
4
+
5
+ test("should be defined on jquery object", function () {
6
+ ok($(document.body).scrollspy, 'scrollspy method is defined')
7
+ })
8
+
9
+ test("should return element", function () {
10
+ ok($(document.body).scrollspy()[0] == document.body, 'document.body returned')
11
+ })
12
+
13
+ test("should switch active class on scroll", function () {
14
+ var sectionHTML = '<div id="masthead"></div>'
15
+ , $section = $(sectionHTML).append('#qunit-fixture')
16
+ , topbarHTML ='<div class="topbar">'
17
+ + '<div class="topbar-inner">'
18
+ + '<div class="container">'
19
+ + '<h3><a href="#">Bootstrap</a></h3>'
20
+ + '<ul class="nav">'
21
+ + '<li><a href="#masthead">Overview</a></li>'
22
+ + '</ul>'
23
+ + '</div>'
24
+ + '</div>'
25
+ + '</div>'
26
+ , $topbar = $(topbarHTML).scrollspy()
27
+
28
+ ok($topbar.find('.active', true))
29
+ })
30
+
31
+ })
@@ -0,0 +1,61 @@
1
+ $(function () {
2
+
3
+ module("bootstrap-tabs")
4
+
5
+ test("should be defined on jquery object", function () {
6
+ ok($(document.body).tab, 'tabs method is defined')
7
+ })
8
+
9
+ test("should return element", function () {
10
+ ok($(document.body).tab()[0] == document.body, 'document.body returned')
11
+ })
12
+
13
+ test("should activate element by tab id", function () {
14
+ var tabsHTML =
15
+ '<ul class="tabs">'
16
+ + '<li><a href="#home">Home</a></li>'
17
+ + '<li><a href="#profile">Profile</a></li>'
18
+ + '</ul>'
19
+
20
+ $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo("#qunit-fixture")
21
+
22
+ $(tabsHTML).find('li:last a').tab('show')
23
+ equals($("#qunit-fixture").find('.active').attr('id'), "profile")
24
+
25
+ $(tabsHTML).find('li:first a').tab('show')
26
+ equals($("#qunit-fixture").find('.active').attr('id'), "home")
27
+ })
28
+
29
+ test("should activate element by tab id", function () {
30
+ var pillsHTML =
31
+ '<ul class="pills">'
32
+ + '<li><a href="#home">Home</a></li>'
33
+ + '<li><a href="#profile">Profile</a></li>'
34
+ + '</ul>'
35
+
36
+ $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo("#qunit-fixture")
37
+
38
+ $(pillsHTML).find('li:last a').tab('show')
39
+ equals($("#qunit-fixture").find('.active').attr('id'), "profile")
40
+
41
+ $(pillsHTML).find('li:first a').tab('show')
42
+ equals($("#qunit-fixture").find('.active').attr('id'), "home")
43
+ })
44
+
45
+
46
+ test("should not fire closed when close is prevented", function () {
47
+ $.support.transition = false
48
+ stop();
49
+ $('<div class="tab"/>')
50
+ .bind('show', function (e) {
51
+ e.preventDefault();
52
+ ok(true);
53
+ start();
54
+ })
55
+ .bind('shown', function () {
56
+ ok(false);
57
+ })
58
+ .tab('show')
59
+ })
60
+
61
+ })
@@ -0,0 +1,155 @@
1
+ $(function () {
2
+
3
+ module("bootstrap-tooltip")
4
+
5
+ test("should be defined on jquery object", function () {
6
+ var div = $("<div></div>")
7
+ ok(div.tooltip, 'popover method is defined')
8
+ })
9
+
10
+ test("should return element", function () {
11
+ var div = $("<div></div>")
12
+ ok(div.tooltip() == div, 'document.body returned')
13
+ })
14
+
15
+ test("should expose default settings", function () {
16
+ ok(!!$.fn.tooltip.defaults, 'defaults is defined')
17
+ })
18
+
19
+ test("should remove title attribute", function () {
20
+ var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>').tooltip()
21
+ ok(!tooltip.attr('title'), 'title tag was removed')
22
+ })
23
+
24
+ test("should add data attribute for referencing original title", function () {
25
+ var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>').tooltip()
26
+ equals(tooltip.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
27
+ })
28
+
29
+ test("should place tooltips relative to placement option", function () {
30
+ $.support.transition = false
31
+ var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
32
+ .appendTo('#qunit-fixture')
33
+ .tooltip({placement: 'bottom'})
34
+ .tooltip('show')
35
+
36
+ ok($(".tooltip").is('.fade.bottom.in'), 'has correct classes applied')
37
+ tooltip.tooltip('hide')
38
+ })
39
+
40
+ test("should always allow html entities", function () {
41
+ $.support.transition = false
42
+ var tooltip = $('<a href="#" rel="tooltip" title="<b>@fat</b>"></a>')
43
+ .appendTo('#qunit-fixture')
44
+ .tooltip('show')
45
+
46
+ ok($('.tooltip b').length, 'b tag was inserted')
47
+ tooltip.tooltip('hide')
48
+ ok(!$(".tooltip").length, 'tooltip removed')
49
+ })
50
+
51
+ test("should respect custom classes", function () {
52
+ var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
53
+ .appendTo('#qunit-fixture')
54
+ .tooltip({ template: '<div class="tooltip some-class"><div class="tooltip-arrow"/><div class="tooltip-inner"/></div>'})
55
+ .tooltip('show')
56
+
57
+ ok($('.tooltip').hasClass('some-class'), 'custom class is present')
58
+ tooltip.tooltip('hide')
59
+ ok(!$(".tooltip").length, 'tooltip removed')
60
+ })
61
+
62
+ test("should not show tooltip if leave event occurs before delay expires", function () {
63
+ var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
64
+ .appendTo('#qunit-fixture')
65
+ .tooltip({ delay: 200 })
66
+
67
+ stop()
68
+
69
+ tooltip.trigger('mouseenter')
70
+
71
+ setTimeout(function () {
72
+ ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
73
+ tooltip.trigger('mouseout')
74
+ setTimeout(function () {
75
+ ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
76
+ start()
77
+ }, 200)
78
+ }, 100)
79
+ })
80
+
81
+ test("should not show tooltip if leave event occurs before delay expires, even if hide delay is 0", function () {
82
+ var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
83
+ .appendTo('#qunit-fixture')
84
+ .tooltip({ delay: { show: 200, hide: 0} })
85
+
86
+ stop()
87
+
88
+ tooltip.trigger('mouseenter')
89
+
90
+ setTimeout(function () {
91
+ ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
92
+ tooltip.trigger('mouseout')
93
+ setTimeout(function () {
94
+ ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
95
+ start()
96
+ }, 200)
97
+ }, 100)
98
+ })
99
+
100
+ test("should not show tooltip if leave event occurs before delay expires", function () {
101
+ var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
102
+ .appendTo('#qunit-fixture')
103
+ .tooltip({ delay: 100 })
104
+ stop()
105
+ tooltip.trigger('mouseenter')
106
+ setTimeout(function () {
107
+ ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
108
+ tooltip.trigger('mouseout')
109
+ setTimeout(function () {
110
+ ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
111
+ start()
112
+ }, 100)
113
+ }, 50)
114
+ })
115
+
116
+ test("should show tooltip if leave event hasn't occured before delay expires", function () {
117
+ var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
118
+ .appendTo('#qunit-fixture')
119
+ .tooltip({ delay: 150 })
120
+ stop()
121
+ tooltip.trigger('mouseenter')
122
+ setTimeout(function () {
123
+ ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
124
+ }, 100)
125
+ setTimeout(function () {
126
+ ok($(".tooltip").is('.fade.in'), 'tooltip has faded in')
127
+ start()
128
+ }, 200)
129
+ })
130
+
131
+ test("should detect if title string is html or text: foo", function () {
132
+ ok(!$.fn.tooltip.Constructor.prototype.isHTML('foo'), 'correctly detected html')
133
+ })
134
+
135
+ test("should detect if title string is html or text: &amp;lt;foo&amp;gt;", function () {
136
+ ok(!$.fn.tooltip.Constructor.prototype.isHTML('&lt;foo&gt;'), 'correctly detected html')
137
+ })
138
+
139
+ test("should detect if title string is html or text: &lt;div>foo&lt;/div>", function () {
140
+ ok($.fn.tooltip.Constructor.prototype.isHTML('<div>foo</div>'), 'correctly detected html')
141
+ })
142
+
143
+ test("should detect if title string is html or text: asdfa&lt;div>foo&lt;/div>asdfasdf", function () {
144
+ ok($.fn.tooltip.Constructor.prototype.isHTML('asdfa<div>foo</div>asdfasdf'), 'correctly detected html')
145
+ })
146
+
147
+ test("should detect if title string is html or text: document.createElement('div')", function () {
148
+ ok($.fn.tooltip.Constructor.prototype.isHTML(document.createElement('div')), 'correctly detected html')
149
+ })
150
+
151
+ test("should detect if title string is html or text: $('&lt;div />)", function () {
152
+ ok($.fn.tooltip.Constructor.prototype.isHTML($('<div></div>')), 'correctly detected html')
153
+ })
154
+
155
+ })
@@ -0,0 +1,13 @@
1
+ $(function () {
2
+
3
+ module("bootstrap-transition")
4
+
5
+ test("should be defined on jquery support object", function () {
6
+ ok($.support.transition !== undefined, 'transition object is defined')
7
+ })
8
+
9
+ test("should provide an end object", function () {
10
+ ok($.support.transition ? $.support.transition.end : true, 'end string is defined')
11
+ })
12
+
13
+ })