middleman-core 4.5.1 → 5.0.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1201) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +2 -2
  3. data/cucumber.yml +2 -2
  4. data/lib/middleman-core/application.rb +22 -24
  5. data/lib/middleman-core/builder.rb +221 -85
  6. data/lib/middleman-core/callback_manager.rb +1 -1
  7. data/lib/middleman-core/config_context.rb +3 -3
  8. data/lib/middleman-core/configuration.rb +20 -8
  9. data/lib/middleman-core/contracts.rb +38 -3
  10. data/lib/middleman-core/core_extensions/collections/lazy_root.rb +1 -1
  11. data/lib/middleman-core/core_extensions/collections/lazy_step.rb +9 -9
  12. data/lib/middleman-core/core_extensions/collections/pagination.rb +6 -7
  13. data/lib/middleman-core/core_extensions/collections.rb +7 -9
  14. data/lib/middleman-core/core_extensions/data/controller.rb +109 -0
  15. data/lib/middleman-core/core_extensions/data/proxies/array.rb +74 -0
  16. data/lib/middleman-core/core_extensions/data/proxies/base.rb +82 -0
  17. data/lib/middleman-core/core_extensions/data/proxies/hash.rb +32 -0
  18. data/lib/middleman-core/core_extensions/data/stores/base.rb +42 -0
  19. data/lib/middleman-core/core_extensions/data/stores/in_memory.rb +52 -0
  20. data/lib/middleman-core/core_extensions/data/stores/local_file.rb +92 -0
  21. data/lib/middleman-core/core_extensions/data.rb +33 -204
  22. data/lib/middleman-core/core_extensions/default_helpers.rb +37 -46
  23. data/lib/middleman-core/core_extensions/external_helpers.rb +1 -1
  24. data/lib/middleman-core/core_extensions/file_watcher.rb +2 -4
  25. data/lib/middleman-core/core_extensions/front_matter.rb +28 -17
  26. data/lib/middleman-core/core_extensions/i18n.rb +55 -51
  27. data/lib/middleman-core/core_extensions/rendering.rb +6 -0
  28. data/lib/middleman-core/core_extensions/routing.rb +21 -18
  29. data/lib/middleman-core/core_extensions.rb +3 -9
  30. data/lib/middleman-core/data_proxy.rb +69 -0
  31. data/lib/middleman-core/dependencies/edge.rb +27 -0
  32. data/lib/middleman-core/dependencies/graph.rb +144 -0
  33. data/lib/middleman-core/dependencies/vertices/data_collection_path_vertex.rb +78 -0
  34. data/lib/middleman-core/dependencies/vertices/data_collection_vertex.rb +67 -0
  35. data/lib/middleman-core/dependencies/vertices/file_vertex.rb +65 -0
  36. data/lib/middleman-core/dependencies/vertices/vertex.rb +82 -0
  37. data/lib/middleman-core/dependencies/vertices.rb +18 -0
  38. data/lib/middleman-core/dependencies.rb +131 -0
  39. data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +6 -4
  40. data/lib/middleman-core/dns_resolver/hosts_resolver.rb +2 -2
  41. data/lib/middleman-core/dns_resolver/local_link_resolver.rb +3 -3
  42. data/lib/middleman-core/dns_resolver/network_resolver.rb +2 -2
  43. data/lib/middleman-core/dns_resolver.rb +7 -5
  44. data/lib/middleman-core/extension.rb +39 -42
  45. data/lib/middleman-core/extension_manager.rb +8 -4
  46. data/lib/middleman-core/extensions/asset_hash.rb +48 -52
  47. data/lib/middleman-core/extensions/asset_host.rb +30 -18
  48. data/lib/middleman-core/extensions/automatic_alt_tags.rb +6 -4
  49. data/lib/middleman-core/extensions/automatic_image_sizes.rb +9 -7
  50. data/lib/middleman-core/extensions/cache_buster.rb +21 -8
  51. data/lib/middleman-core/extensions/directory_indexes.rb +14 -14
  52. data/lib/middleman-core/extensions/external_pipeline.rb +15 -11
  53. data/lib/middleman-core/extensions/gzip.rb +16 -11
  54. data/lib/middleman-core/extensions/lorem.rb +15 -14
  55. data/lib/middleman-core/extensions/minify_css.rb +58 -96
  56. data/lib/middleman-core/extensions/minify_javascript.rb +65 -109
  57. data/lib/middleman-core/extensions/relative_assets.rb +30 -19
  58. data/lib/middleman-core/extensions.rb +14 -16
  59. data/lib/middleman-core/file_renderer.rb +20 -24
  60. data/lib/middleman-core/filter.rb +56 -0
  61. data/lib/middleman-core/inline_url_filter.rb +76 -0
  62. data/lib/middleman-core/load_paths.rb +13 -14
  63. data/lib/middleman-core/logger.rb +6 -13
  64. data/lib/middleman-core/meta_pages/sitemap_resource.rb +0 -2
  65. data/lib/middleman-core/meta_pages/sitemap_tree.rb +1 -1
  66. data/lib/middleman-core/meta_pages.rb +2 -2
  67. data/lib/middleman-core/preview_server/checks.rb +15 -4
  68. data/lib/middleman-core/preview_server/information.rb +22 -23
  69. data/lib/middleman-core/preview_server/network_interface_inventory.rb +3 -3
  70. data/lib/middleman-core/preview_server/server_information.rb +5 -5
  71. data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +1 -1
  72. data/lib/middleman-core/preview_server/server_ip_address.rb +15 -6
  73. data/lib/middleman-core/preview_server/server_url.rb +39 -11
  74. data/lib/middleman-core/preview_server/tcp_port_prober.rb +1 -1
  75. data/lib/middleman-core/preview_server.rb +37 -31
  76. data/lib/middleman-core/rack.rb +7 -12
  77. data/lib/middleman-core/renderers/coffee_script.rb +2 -2
  78. data/lib/middleman-core/renderers/erb.rb +1 -1
  79. data/lib/middleman-core/renderers/haml.rb +11 -45
  80. data/lib/middleman-core/renderers/kramdown.rb +0 -4
  81. data/lib/middleman-core/renderers/less.rb +1 -1
  82. data/lib/middleman-core/renderers/liquid.rb +9 -12
  83. data/lib/middleman-core/renderers/markdown.rb +8 -10
  84. data/lib/middleman-core/renderers/redcarpet.rb +3 -4
  85. data/lib/middleman-core/renderers/sass.rb +20 -7
  86. data/lib/middleman-core/renderers/sass_functions.rb +14 -8
  87. data/lib/middleman-core/renderers/slim.rb +2 -2
  88. data/lib/middleman-core/renderers/stylus.rb +10 -0
  89. data/lib/middleman-core/sitemap/extensions/ignores.rb +5 -9
  90. data/lib/middleman-core/sitemap/extensions/import.rb +16 -17
  91. data/lib/middleman-core/sitemap/extensions/move_file.rb +7 -5
  92. data/lib/middleman-core/sitemap/extensions/on_disk.rb +10 -9
  93. data/lib/middleman-core/sitemap/extensions/proxies.rb +27 -20
  94. data/lib/middleman-core/sitemap/extensions/redirects.rb +4 -4
  95. data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +4 -5
  96. data/lib/middleman-core/sitemap/extensions/traversal.rb +75 -29
  97. data/lib/middleman-core/sitemap/resource.rb +169 -54
  98. data/lib/middleman-core/sitemap/resource_list_container.rb +248 -0
  99. data/lib/middleman-core/sitemap/store.rb +29 -103
  100. data/lib/middleman-core/sources/source_watcher.rb +27 -21
  101. data/lib/middleman-core/sources.rb +40 -27
  102. data/lib/middleman-core/step_definitions/builder_steps.rb +73 -12
  103. data/lib/middleman-core/step_definitions/commandline_steps.rb +10 -6
  104. data/lib/middleman-core/step_definitions/middleman_steps.rb +24 -14
  105. data/lib/middleman-core/step_definitions/server_steps.rb +19 -18
  106. data/lib/middleman-core/template_context.rb +55 -23
  107. data/lib/middleman-core/template_renderer.rb +68 -42
  108. data/lib/middleman-core/util/binary.rb +307 -3
  109. data/lib/middleman-core/util/data.rb +14 -50
  110. data/lib/middleman-core/util/empty_hash.rb +3 -0
  111. data/lib/middleman-core/util/files.rb +35 -9
  112. data/lib/middleman-core/util/paths.rb +75 -70
  113. data/lib/middleman-core/util/rack.rb +8 -7
  114. data/lib/middleman-core/util/uri_templates.rb +2 -5
  115. data/lib/middleman-core/util.rb +2 -4
  116. data/lib/middleman-core/version.rb +1 -1
  117. data/lib/middleman-core.rb +5 -3
  118. data/middleman-core.gemspec +16 -16
  119. metadata +74 -1161
  120. data/features/asset_hash.feature +0 -340
  121. data/features/asset_host.feature +0 -55
  122. data/features/auto_layout.feature +0 -36
  123. data/features/automatic_alt_tags.feature +0 -8
  124. data/features/automatic_directory_matcher.feature +0 -32
  125. data/features/automatic_image_sizes.feature +0 -29
  126. data/features/builder.feature +0 -61
  127. data/features/cache_buster.feature +0 -56
  128. data/features/capture_html.feature +0 -18
  129. data/features/chained_templates.feature +0 -109
  130. data/features/clean_build.feature +0 -78
  131. data/features/coffee-script.feature +0 -22
  132. data/features/collections.feature +0 -265
  133. data/features/console.feature +0 -11
  134. data/features/content_for.feature +0 -16
  135. data/features/content_type.feature +0 -46
  136. data/features/custom-source.feature +0 -7
  137. data/features/custom_layout_engines.feature +0 -8
  138. data/features/custom_layouts.feature +0 -84
  139. data/features/data.feature +0 -111
  140. data/features/default-layout.feature +0 -90
  141. data/features/default_alt_tag.feature +0 -11
  142. data/features/directory_index.feature +0 -82
  143. data/features/dynamic_pages.feature +0 -136
  144. data/features/encoding_option.feature +0 -28
  145. data/features/extension_api_deprecations.feature +0 -10
  146. data/features/extension_hooks.feature +0 -13
  147. data/features/extensionless_text_files.feature +0 -24
  148. data/features/feature_params.feature +0 -6
  149. data/features/former_padrino_helpers.feature +0 -27
  150. data/features/front-matter-neighbor.feature +0 -157
  151. data/features/front-matter.feature +0 -87
  152. data/features/frontmatter_page_settings.feature +0 -43
  153. data/features/gzip.feature +0 -51
  154. data/features/helpers_auto_javascript_include_tag.feature +0 -53
  155. data/features/helpers_auto_stylesheet_link_tag.feature +0 -48
  156. data/features/helpers_content_tag.feature +0 -16
  157. data/features/helpers_external.feature +0 -12
  158. data/features/helpers_form_tag.feature +0 -26
  159. data/features/helpers_link_to.feature +0 -195
  160. data/features/helpers_lorem.feature +0 -6
  161. data/features/helpers_page_classes.feature +0 -32
  162. data/features/helpers_select_tag.feature +0 -17
  163. data/features/helpers_url_for.feature +0 -152
  164. data/features/i18n_builder.feature +0 -166
  165. data/features/i18n_force_locale.feature +0 -13
  166. data/features/i18n_link_to.feature +0 -307
  167. data/features/i18n_mixed_sources.feature +0 -39
  168. data/features/i18n_partials.feature +0 -23
  169. data/features/i18n_preview.feature +0 -252
  170. data/features/ignore.feature +0 -206
  171. data/features/ignore_already_minified.feature +0 -47
  172. data/features/image_srcset_paths.feature +0 -7
  173. data/features/import_files.feature +0 -15
  174. data/features/layouts_dir.feature +0 -38
  175. data/features/liquid.feature +0 -14
  176. data/features/markdown.feature +0 -23
  177. data/features/markdown_kramdown.feature +0 -55
  178. data/features/markdown_kramdown_in_haml.feature +0 -42
  179. data/features/markdown_kramdown_in_slim.feature +0 -42
  180. data/features/markdown_redcarpet.feature +0 -167
  181. data/features/markdown_redcarpet_in_haml.feature +0 -41
  182. data/features/markdown_redcarpet_in_slim.feature +0 -41
  183. data/features/minify_css.feature +0 -205
  184. data/features/minify_javascript.feature +0 -266
  185. data/features/missing-tilt-lib.feature +0 -20
  186. data/features/more-clean_build.feature +0 -14
  187. data/features/more-extensionless_text_files.feature +0 -28
  188. data/features/more-frontmatter_page_settings.feature +0 -42
  189. data/features/more-ignore.feature +0 -62
  190. data/features/more-sitemap_traversal.feature +0 -83
  191. data/features/more-wildcard_page_helper.feature +0 -10
  192. data/features/mount_rack.feature +0 -65
  193. data/features/move_files.feature +0 -44
  194. data/features/multiple-sources.feature +0 -35
  195. data/features/nested_layouts.feature +0 -58
  196. data/features/page-id.feature +0 -74
  197. data/features/paginate.feature +0 -204
  198. data/features/partials.feature +0 -64
  199. data/features/preview_changes.feature +0 -29
  200. data/features/proxy_pages.feature +0 -84
  201. data/features/redirects.feature +0 -61
  202. data/features/relative_assets.feature +0 -148
  203. data/features/relative_assets_helpers_only.feature +0 -125
  204. data/features/sass-assets-paths.feature +0 -11
  205. data/features/sass_in_slim.feature +0 -40
  206. data/features/sass_partials.feature +0 -54
  207. data/features/scss-support.feature +0 -17
  208. data/features/sitemap_traversal.feature +0 -83
  209. data/features/slim.feature +0 -81
  210. data/features/strip_url.feature +0 -40
  211. data/features/support/env.rb +0 -12
  212. data/features/support/preserve_mime_types.rb +0 -7
  213. data/features/template-key-collision.feature +0 -26
  214. data/features/tilde_directories.feature +0 -14
  215. data/features/unicode_filecontents.feature +0 -13
  216. data/features/unicode_filenames.feature +0 -36
  217. data/features/v4_extension_callbacks.feature +0 -8
  218. data/features/wildcard_page_helper.feature +0 -10
  219. data/fixtures/asset-hash-app/config.rb +0 -6
  220. data/fixtures/asset-hash-app/lib/middleware.rb +0 -16
  221. data/fixtures/asset-hash-app/source/api.json.erb +0 -1
  222. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  223. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  224. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
  225. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
  226. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  227. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  228. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  229. data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
  230. data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
  231. data/fixtures/asset-hash-app/source/index.html.erb +0 -314
  232. data/fixtures/asset-hash-app/source/javascripts/application.js +0 -8
  233. data/fixtures/asset-hash-app/source/layout.erb +0 -18
  234. data/fixtures/asset-hash-app/source/other.html.erb +0 -5
  235. data/fixtures/asset-hash-app/source/partials.html.erb +0 -1
  236. data/fixtures/asset-hash-app/source/slim.html.slim +0 -8
  237. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +0 -2
  238. data/fixtures/asset-hash-app/source/stylesheets/fragment.css.scss +0 -7
  239. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +0 -4
  240. data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +0 -4
  241. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +0 -4
  242. data/fixtures/asset-hash-app/source/subdir/api.json.erb +0 -1
  243. data/fixtures/asset-hash-app/source/subdir/index.html.erb +0 -317
  244. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  245. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  246. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  247. data/fixtures/asset-hash-host-app/source/index.html.erb +0 -9
  248. data/fixtures/asset-hash-host-app/source/layout.erb +0 -17
  249. data/fixtures/asset-hash-host-app/source/other.html.erb +0 -5
  250. data/fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss +0 -7
  251. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +0 -4
  252. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +0 -6
  253. data/fixtures/asset-hash-minified-app/config.rb +0 -5
  254. data/fixtures/asset-hash-minified-app/source/images/100px.jpg +0 -0
  255. data/fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js +0 -5
  256. data/fixtures/asset-hash-minified-app/source/stylesheets/test.css +0 -3
  257. data/fixtures/asset-hash-prefix/config.rb +0 -7
  258. data/fixtures/asset-hash-prefix/lib/middleware.rb +0 -16
  259. data/fixtures/asset-hash-prefix/source/index.html.erb +0 -6
  260. data/fixtures/asset-hash-prefix/source/javascripts/application.js +0 -2
  261. data/fixtures/asset-hash-prefix/source/javascripts/application.js.map +0 -1
  262. data/fixtures/asset-hash-prefix/source/layout.erb +0 -17
  263. data/fixtures/asset-hash-remove-filename/config.rb +0 -9
  264. data/fixtures/asset-hash-remove-filename/source/index.html.erb +0 -6
  265. data/fixtures/asset-hash-remove-filename/source/javascripts/application.js +0 -2
  266. data/fixtures/asset-hash-remove-filename/source/javascripts/application.js.map +0 -1
  267. data/fixtures/asset-hash-remove-filename/source/layout.erb +0 -17
  268. data/fixtures/asset-hash-source-map/config.rb +0 -6
  269. data/fixtures/asset-hash-source-map/lib/middleware.rb +0 -16
  270. data/fixtures/asset-hash-source-map/source/index.html.erb +0 -6
  271. data/fixtures/asset-hash-source-map/source/javascripts/application.js +0 -2
  272. data/fixtures/asset-hash-source-map/source/javascripts/application.js.map +0 -1
  273. data/fixtures/asset-hash-source-map/source/layout.erb +0 -17
  274. data/fixtures/asset-host-app/config.rb +0 -1
  275. data/fixtures/asset-host-app/source/.htaccess +0 -1
  276. data/fixtures/asset-host-app/source/asset_host.html.erb +0 -55
  277. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  278. data/fixtures/asset-host-app/source/images/blank0.gif +0 -0
  279. data/fixtures/asset-host-app/source/images/blank1.gif +0 -0
  280. data/fixtures/asset-host-app/source/images/blank10.gif +0 -0
  281. data/fixtures/asset-host-app/source/images/blank100.gif +0 -0
  282. data/fixtures/asset-host-app/source/images/blank101.gif +0 -0
  283. data/fixtures/asset-host-app/source/images/blank1010.gif +0 -0
  284. data/fixtures/asset-host-app/source/images/blank102.gif +0 -0
  285. data/fixtures/asset-host-app/source/images/blank1020.gif +0 -0
  286. data/fixtures/asset-host-app/source/images/blank1021.gif +0 -0
  287. data/fixtures/asset-host-app/source/images/blank1022.gif +0 -0
  288. data/fixtures/asset-host-app/source/images/blank1023.gif +0 -0
  289. data/fixtures/asset-host-app/source/images/blank1024.gif +0 -0
  290. data/fixtures/asset-host-app/source/images/blank103.gif +0 -0
  291. data/fixtures/asset-host-app/source/images/blank1030.gif +0 -0
  292. data/fixtures/asset-host-app/source/images/blank1031.gif +0 -0
  293. data/fixtures/asset-host-app/source/images/blank1032.gif +0 -0
  294. data/fixtures/asset-host-app/source/images/blank1033.gif +0 -0
  295. data/fixtures/asset-host-app/source/images/blank1034.gif +0 -0
  296. data/fixtures/asset-host-app/source/images/blank104.gif +0 -0
  297. data/fixtures/asset-host-app/source/images/blank1043.gif +0 -0
  298. data/fixtures/asset-host-app/source/images/blank1054.gif +0 -0
  299. data/fixtures/asset-host-app/source/images/blank2.gif +0 -0
  300. data/fixtures/asset-host-app/source/images/blank20.gif +0 -0
  301. data/fixtures/asset-host-app/source/images/blank21.gif +0 -0
  302. data/fixtures/asset-host-app/source/images/blank22.gif +0 -0
  303. data/fixtures/asset-host-app/source/images/blank23.gif +0 -0
  304. data/fixtures/asset-host-app/source/images/blank24.gif +0 -0
  305. data/fixtures/asset-host-app/source/images/blank3.gif +0 -0
  306. data/fixtures/asset-host-app/source/images/blank30.gif +0 -0
  307. data/fixtures/asset-host-app/source/images/blank31.gif +0 -0
  308. data/fixtures/asset-host-app/source/images/blank32.gif +0 -0
  309. data/fixtures/asset-host-app/source/images/blank33.gif +0 -0
  310. data/fixtures/asset-host-app/source/images/blank34.gif +0 -0
  311. data/fixtures/asset-host-app/source/images/blank4.gif +0 -0
  312. data/fixtures/asset-host-app/source/images/blank43.gif +0 -0
  313. data/fixtures/asset-host-app/source/images/blank54.gif +0 -0
  314. data/fixtures/asset-host-app/source/javascripts/asset_host.js +0 -2
  315. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +0 -48
  316. data/fixtures/auto-css-app/config.rb +0 -9
  317. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +0 -1
  318. data/fixtures/auto-css-app/source/auto-css/index.html.erb +0 -1
  319. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +0 -1
  320. data/fixtures/auto-css-app/source/auto-css.html.erb +0 -1
  321. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +0 -3
  322. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  323. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +0 -3
  324. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +0 -3
  325. data/fixtures/auto-js-app/config.rb +0 -9
  326. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +0 -1
  327. data/fixtures/auto-js-app/source/auto-js/index.html.erb +0 -1
  328. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +0 -1
  329. data/fixtures/auto-js-app/source/auto-js.html.erb +0 -1
  330. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +0 -1
  331. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +0 -1
  332. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +0 -1
  333. data/fixtures/auto-js-app/source/javascripts/auto-js.js +0 -1
  334. data/fixtures/auto-js-directory-index-app/config.rb +0 -1
  335. data/fixtures/auto-js-directory-index-app/source/auto-js.html.erb +0 -1
  336. data/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js +0 -1
  337. data/fixtures/automatic-alt-tags-app/config.rb +0 -0
  338. data/fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb +0 -1
  339. data/fixtures/automatic-alt-tags-app/source/images/blank.gif +0 -0
  340. data/fixtures/automatic-directory-matcher-app/config.rb +0 -1
  341. data/fixtures/automatic-directory-matcher-app/source/root-plain.html +0 -1
  342. data/fixtures/automatic-directory-matcher-app/source/root.html.erb +0 -1
  343. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html +0 -1
  344. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb +0 -1
  345. data/fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html +0 -1
  346. data/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb +0 -1
  347. data/fixtures/automatic-image-size-app/config.rb +0 -0
  348. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +0 -1
  349. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  350. data/fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown +0 -1
  351. data/fixtures/basic-data-app/config.rb +0 -2
  352. data/fixtures/basic-data-app/data/test.yml +0 -4
  353. data/fixtures/basic-data-app/data/test2.json +0 -4
  354. data/fixtures/basic-data-app/data/test3.toml +0 -7
  355. data/fixtures/basic-data-app/source/data.html.erb +0 -5
  356. data/fixtures/basic-data-app/source/data3.html.erb +0 -5
  357. data/fixtures/basic-data-app/source/data4.html.erb +0 -5
  358. data/fixtures/build-with-errors-app/config.rb +0 -1
  359. data/fixtures/build-with-errors-app/source/index.html.erb +0 -1
  360. data/fixtures/cache-buster-app/config.rb +0 -0
  361. data/fixtures/cache-buster-app/source/cache-buster.html.erb +0 -3
  362. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  363. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +0 -2
  364. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +0 -3
  365. data/fixtures/capture-html-app/config.rb +0 -5
  366. data/fixtures/capture-html-app/source/capture_html_erb.html.erb +0 -5
  367. data/fixtures/capture-html-app/source/capture_html_haml.html.haml +0 -4
  368. data/fixtures/capture-html-app/source/capture_html_slim.html.slim +0 -4
  369. data/fixtures/capture-html-app/source/layouts/capture_html.erb +0 -4
  370. data/fixtures/chained-app/config.rb +0 -0
  371. data/fixtures/chained-app/data/article.yml +0 -2
  372. data/fixtures/chained-app/source/index.html.str.erb +0 -8
  373. data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +0 -8
  374. data/fixtures/clean-app/config-complications.rb +0 -9
  375. data/fixtures/clean-app/config-empty.rb +0 -0
  376. data/fixtures/clean-app/config-hidden-dir-after.rb +0 -5
  377. data/fixtures/clean-app/config-hidden-dir-before.rb +0 -1
  378. data/fixtures/clean-app/config.rb +0 -9
  379. data/fixtures/clean-app/source/index.html.erb +0 -1
  380. data/fixtures/clean-app/source/layout.erb +0 -9
  381. data/fixtures/clean-app/source/layouts/custom.erb +0 -8
  382. data/fixtures/clean-app/source/real/index.html.erb +0 -5
  383. data/fixtures/clean-app/source/real.html +0 -1
  384. data/fixtures/clean-app/source/should_be_ignored.html +0 -1
  385. data/fixtures/clean-app/source/should_be_ignored2.html +0 -1
  386. data/fixtures/clean-app/source/should_be_ignored3.html +0 -1
  387. data/fixtures/clean-app/source/static.html +0 -1
  388. data/fixtures/clean-dir-app/config.rb +0 -2
  389. data/fixtures/clean-dir-app/source/about.html +0 -1
  390. data/fixtures/clean-nested-app/config.rb +0 -1
  391. data/fixtures/clean-nested-app/source/about.html +0 -1
  392. data/fixtures/clean-nested-app/source/nested/nested.html +0 -1
  393. data/fixtures/coffeescript-app/config.rb +0 -0
  394. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +0 -3
  395. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +0 -3
  396. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +0 -3
  397. data/fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown +0 -7
  398. data/fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown +0 -9
  399. data/fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown +0 -9
  400. data/fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown +0 -8
  401. data/fixtures/content-for-app/config.rb +0 -5
  402. data/fixtures/content-for-app/source/content_for_erb.html.erb +0 -5
  403. data/fixtures/content-for-app/source/content_for_haml.html.haml +0 -4
  404. data/fixtures/content-for-app/source/content_for_slim.html.slim +0 -5
  405. data/fixtures/content-for-app/source/layouts/content_for.erb +0 -4
  406. data/fixtures/content-type-app/config.rb +0 -1
  407. data/fixtures/content-type-app/source/.htaccess +0 -1
  408. data/fixtures/content-type-app/source/README +0 -1
  409. data/fixtures/content-type-app/source/images/blank.gif +0 -0
  410. data/fixtures/content-type-app/source/index.html +0 -1
  411. data/fixtures/content-type-app/source/index.php +0 -1
  412. data/fixtures/content-type-app/source/javascripts/app.js +0 -1
  413. data/fixtures/content-type-app/source/override.html +0 -5
  414. data/fixtures/content-type-app/source/stylesheets/site.css +0 -1
  415. data/fixtures/csspie/config.rb +0 -0
  416. data/fixtures/csspie/source/stylesheets/PIE.htc +0 -96
  417. data/fixtures/custom-layout-app/config.rb +0 -1
  418. data/fixtures/custom-layout-app/source/index.html.erb +0 -1
  419. data/fixtures/custom-layout-app/source/layout.str +0 -9
  420. data/fixtures/custom-layout-app2/config.rb +0 -0
  421. data/fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb +0 -1
  422. data/fixtures/custom-layout-app2/source/custom-layout.html.erb +0 -1
  423. data/fixtures/custom-layout-app2/source/layouts/custom.erb +0 -8
  424. data/fixtures/custom-src-app/config.rb +0 -1
  425. data/fixtures/custom-src-app/src/index.html +0 -0
  426. data/fixtures/custom-src-app/src/layouts/layout.html.erb +0 -1
  427. data/fixtures/data-app/config.rb +0 -3
  428. data/fixtures/data-app/data/pages.yml +0 -6
  429. data/fixtures/data-app/source/index.html.erb +0 -1
  430. data/fixtures/data-app/source/layout.erb +0 -5
  431. data/fixtures/default-alt-tags-app/config.rb +0 -0
  432. data/fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb +0 -1
  433. data/fixtures/default-alt-tags-app/source/images/blank.gif +0 -0
  434. data/fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb +0 -1
  435. data/fixtures/different-engine-layout/config.rb +0 -0
  436. data/fixtures/different-engine-layout/source/index.haml +0 -1
  437. data/fixtures/different-engine-layout/source/index.html.str +0 -1
  438. data/fixtures/different-engine-layout/source/layout.erb +0 -9
  439. data/fixtures/different-engine-partial/config.rb +0 -0
  440. data/fixtures/different-engine-partial/source/index.html.erb +0 -1
  441. data/fixtures/different-engine-partial/source/layouts/layout.erb +0 -7
  442. data/fixtures/different-engine-partial/source/shared/_footer.str +0 -1
  443. data/fixtures/different-engine-partial/source/shared/_header.erb +0 -1
  444. data/fixtures/dynamic-pages-app/config.rb +0 -34
  445. data/fixtures/dynamic-pages-app/source/real/index.html.erb +0 -9
  446. data/fixtures/dynamic-pages-app/source/real.html +0 -1
  447. data/fixtures/dynamic-pages-app/source/should_be_ignored.html +0 -1
  448. data/fixtures/dynamic-pages-app/source/should_be_ignored2.html +0 -1
  449. data/fixtures/dynamic-pages-app/source/should_be_ignored3.html +0 -1
  450. data/fixtures/dynamic-pages-app/source/should_be_ignored4.html +0 -1
  451. data/fixtures/dynamic-pages-app/source/should_be_ignored5.html +0 -1
  452. data/fixtures/dynamic-pages-app/source/should_be_ignored6.html +0 -1
  453. data/fixtures/dynamic-pages-app/source/should_be_ignored7.html +0 -1
  454. data/fixtures/dynamic-pages-app/source/should_be_ignored8.html +0 -1
  455. data/fixtures/dynamic-pages-app/source/should_be_ignored9.html +0 -1
  456. data/fixtures/ember-cli-app/config.rb +0 -5
  457. data/fixtures/ember-cli-app/source/javascripts/file.js +0 -0
  458. data/fixtures/ember-cli-app/test-app/.bowerrc +0 -3
  459. data/fixtures/ember-cli-app/test-app/.gitignore +0 -17
  460. data/fixtures/ember-cli-app/test-app/.jshintrc +0 -32
  461. data/fixtures/ember-cli-app/test-app/Brocfile.js +0 -20
  462. data/fixtures/ember-cli-app/test-app/README.md +0 -25
  463. data/fixtures/ember-cli-app/test-app/app/app.js +0 -14
  464. data/fixtures/ember-cli-app/test-app/app/components/.gitkeep +0 -0
  465. data/fixtures/ember-cli-app/test-app/app/controllers/.gitkeep +0 -0
  466. data/fixtures/ember-cli-app/test-app/app/helpers/.gitkeep +0 -0
  467. data/fixtures/ember-cli-app/test-app/app/index.html +0 -26
  468. data/fixtures/ember-cli-app/test-app/app/models/.gitkeep +0 -0
  469. data/fixtures/ember-cli-app/test-app/app/router.js +0 -10
  470. data/fixtures/ember-cli-app/test-app/app/routes/.gitkeep +0 -0
  471. data/fixtures/ember-cli-app/test-app/app/styles/.gitkeep +0 -0
  472. data/fixtures/ember-cli-app/test-app/app/styles/app.css +0 -3
  473. data/fixtures/ember-cli-app/test-app/app/templates/.gitkeep +0 -0
  474. data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +0 -3
  475. data/fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep +0 -0
  476. data/fixtures/ember-cli-app/test-app/app/views/.gitkeep +0 -0
  477. data/fixtures/ember-cli-app/test-app/bower.json +0 -16
  478. data/fixtures/ember-cli-app/test-app/config/environment.js +0 -38
  479. data/fixtures/ember-cli-app/test-app/package.json +0 -31
  480. data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
  481. data/fixtures/ember-cli-app/test-app/testem.json +0 -6
  482. data/fixtures/ember-cli-app/test-app/tests/.jshintrc +0 -73
  483. data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +0 -9
  484. data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +0 -30
  485. data/fixtures/ember-cli-app/test-app/tests/index.html +0 -50
  486. data/fixtures/ember-cli-app/test-app/tests/test-helper.js +0 -6
  487. data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
  488. data/fixtures/empty-app/not-config.rb +0 -0
  489. data/fixtures/engine-matching-layout/config.rb +0 -0
  490. data/fixtures/engine-matching-layout/source/index.html.erb +0 -1
  491. data/fixtures/engine-matching-layout/source/layout.erb +0 -9
  492. data/fixtures/env-app/config.rb +0 -0
  493. data/fixtures/env-app/environments/development.rb +0 -1
  494. data/fixtures/env-app/environments/production.rb +0 -2
  495. data/fixtures/env-app/source/index.html.erb +0 -3
  496. data/fixtures/env-app/source/stylesheets/site.css.scss +0 -3
  497. data/fixtures/extension-api-deprecations-app/config.rb +0 -11
  498. data/fixtures/extension-api-deprecations-app/source/index.html.erb +0 -1
  499. data/fixtures/extension-api-deprecations-app/source/layouts/layout.erb +0 -3
  500. data/fixtures/extension-hooks-app/config.rb +0 -39
  501. data/fixtures/extension-hooks-app/source/index.html.erb +0 -9
  502. data/fixtures/extensionless-text-files-app/config.rb +0 -0
  503. data/fixtures/extensionless-text-files-app/source/CNAME +0 -1
  504. data/fixtures/extensionless-text-files-app/source/LICENSE +0 -1
  505. data/fixtures/extensionless-text-files-app/source/README +0 -1
  506. data/fixtures/extensionless-text-files-app/source/index.html +0 -1
  507. data/fixtures/external-helpers/config.rb +0 -4
  508. data/fixtures/external-helpers/helpers/derp.rb +0 -3
  509. data/fixtures/external-helpers/helpers/four_helpers.rb +0 -3
  510. data/fixtures/external-helpers/helpers/one_helper.rb +0 -3
  511. data/fixtures/external-helpers/helpers/yet_another_thingy.rb +0 -3
  512. data/fixtures/external-helpers/lib/hello_helper.rb +0 -5
  513. data/fixtures/external-helpers/source/automatic.html.erb +0 -1
  514. data/fixtures/external-helpers/source/index.html.erb +0 -1
  515. data/fixtures/external-pipeline-error/config.rb +0 -5
  516. data/fixtures/external-pipeline-error/source/javascripts/file.js +0 -0
  517. data/fixtures/feature-params-app/config.rb +0 -16
  518. data/fixtures/feature-params-app/source/index.html.erb +0 -2
  519. data/fixtures/fonts-app/config.rb +0 -0
  520. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  521. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  522. data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +0 -6
  523. data/fixtures/frontmatter-app/config.rb +0 -1
  524. data/fixtures/frontmatter-app/source/front-matter-2.php.erb +0 -7
  525. data/fixtures/frontmatter-app/source/front-matter-change.html.erb +0 -5
  526. data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +0 -7
  527. data/fixtures/frontmatter-app/source/front-matter-haml.html.haml +0 -6
  528. data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +0 -10
  529. data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +0 -13
  530. data/fixtures/frontmatter-app/source/raw-front-matter-toml.html +0 -6
  531. data/fixtures/frontmatter-app/source/raw-front-matter.html +0 -6
  532. data/fixtures/frontmatter-app/source/raw-front-matter.php +0 -6
  533. data/fixtures/frontmatter-neighbor-app/config.rb +0 -30
  534. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +0 -2
  535. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter +0 -4
  536. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +0 -1
  537. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter +0 -4
  538. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +0 -1
  539. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter +0 -5
  540. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html +0 -1
  541. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter +0 -4
  542. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +0 -1
  543. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter +0 -4
  544. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php +0 -1
  545. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter +0 -4
  546. data/fixtures/frontmatter-settings-app/config.rb +0 -4
  547. data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
  548. data/fixtures/frontmatter-settings-app/source/ignored.html.erb +0 -5
  549. data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +0 -3
  550. data/fixtures/frontmatter-settings-app/source/layouts/override.erb +0 -1
  551. data/fixtures/frontmatter-settings-app/source/override_layout.html.erb +0 -4
  552. data/fixtures/frontmatter-settings-app/source/page_mentioned.html.erb +0 -4
  553. data/fixtures/frontmatter-settings-neighbor-app/config.rb +0 -40
  554. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb +0 -1
  555. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter +0 -3
  556. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb +0 -1
  557. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter +0 -3
  558. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb +0 -3
  559. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb +0 -1
  560. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb +0 -1
  561. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter +0 -3
  562. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb +0 -1
  563. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter +0 -3
  564. data/fixtures/generator-test/config.rb +0 -70
  565. data/fixtures/generator-test/source/index.html.erb +0 -10
  566. data/fixtures/glob-app/config.rb +0 -1
  567. data/fixtures/glob-app/source/index.html.erb +0 -4
  568. data/fixtures/glob-app/source/stylesheets/site.css.str +0 -3
  569. data/fixtures/gzip-app/config.rb +0 -1
  570. data/fixtures/gzip-app/source/index.html +0 -0
  571. data/fixtures/gzip-app/source/javascripts/test.js +0 -1
  572. data/fixtures/gzip-app/source/stylesheets/test.css +0 -1
  573. data/fixtures/i-8859-1-app/config.rb +0 -1
  574. data/fixtures/i-8859-1-app/source/index.html.erb +0 -1
  575. data/fixtures/i18n-alt-root-app/locales/en.yml +0 -4
  576. data/fixtures/i18n-alt-root-app/locales/es.yml +0 -7
  577. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +0 -1
  578. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +0 -1
  579. data/fixtures/i18n-alt-root-app/source/layout.erb +0 -1
  580. data/fixtures/i18n-default-app/locales/en.yml +0 -4
  581. data/fixtures/i18n-default-app/locales/es.yml +0 -8
  582. data/fixtures/i18n-default-app/source/localizable/index.html.erb +0 -5
  583. data/fixtures/i18n-force-locale/config.rb +0 -11
  584. data/fixtures/i18n-force-locale/locales/en.yml +0 -3
  585. data/fixtures/i18n-force-locale/locales/es.yml +0 -3
  586. data/fixtures/i18n-force-locale/locales/fr.yml +0 -3
  587. data/fixtures/i18n-force-locale/source/index.html.haml +0 -2
  588. data/fixtures/i18n-mixed-sources/config.rb +0 -1
  589. data/fixtures/i18n-mixed-sources/locales/en.yml +0 -4
  590. data/fixtures/i18n-mixed-sources/locales/es.yml +0 -4
  591. data/fixtures/i18n-mixed-sources/source/a/sub.html.erb +0 -9
  592. data/fixtures/i18n-mixed-sources/source/b/index.html.erb +0 -9
  593. data/fixtures/i18n-mixed-sources/source/index.html.erb +0 -9
  594. data/fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb +0 -9
  595. data/fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb +0 -9
  596. data/fixtures/i18n-mixed-sources/source/localizable/index.html.erb +0 -9
  597. data/fixtures/i18n-nested-app/locales/en/more.yml +0 -3
  598. data/fixtures/i18n-nested-app/locales/en.yml +0 -4
  599. data/fixtures/i18n-nested-app/locales/es/mucho.yml +0 -3
  600. data/fixtures/i18n-nested-app/locales/es.yml +0 -4
  601. data/fixtures/i18n-nested-app/source/localizable/index.html.erb +0 -3
  602. data/fixtures/i18n-test-app/data/defaults_en.yml +0 -0
  603. data/fixtures/i18n-test-app/data/defaults_es.yml +0 -0
  604. data/fixtures/i18n-test-app/data/en_defaults.yml +0 -0
  605. data/fixtures/i18n-test-app/locales/en.yml +0 -5
  606. data/fixtures/i18n-test-app/locales/es.yml +0 -9
  607. data/fixtures/i18n-test-app/source/CNAME +0 -1
  608. data/fixtures/i18n-test-app/source/_country.en.erb +0 -1
  609. data/fixtures/i18n-test-app/source/_country.es.erb +0 -1
  610. data/fixtures/i18n-test-app/source/_site.erb +0 -1
  611. data/fixtures/i18n-test-app/source/images/president.en.svg +0 -1
  612. data/fixtures/i18n-test-app/source/images/president.es.svg +0 -1
  613. data/fixtures/i18n-test-app/source/layouts/layout.erb +0 -8
  614. data/fixtures/i18n-test-app/source/localizable/_state.en.erb +0 -1
  615. data/fixtures/i18n-test-app/source/localizable/_state.es.erb +0 -1
  616. data/fixtures/i18n-test-app/source/localizable/fallback.html.erb +0 -1
  617. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +0 -1
  618. data/fixtures/i18n-test-app/source/localizable/images/flag.en.svg +0 -1
  619. data/fixtures/i18n-test-app/source/localizable/images/flag.es.svg +0 -1
  620. data/fixtures/i18n-test-app/source/localizable/index.html.erb +0 -1
  621. data/fixtures/i18n-test-app/source/localizable/morning.en.html.erb +0 -1
  622. data/fixtures/i18n-test-app/source/localizable/morning.es.html.erb +0 -1
  623. data/fixtures/i18n-test-app/source/localizable/one.en.html.md +0 -1
  624. data/fixtures/i18n-test-app/source/localizable/one.es.html.md +0 -1
  625. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb +0 -1
  626. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb +0 -1
  627. data/fixtures/i18n-test-app/source/localizable/partials/index.html.erb +0 -8
  628. data/fixtures/i18n-test-app/source/password.txt +0 -1
  629. data/fixtures/i18n-test-app/source/stylesheets/site.css +0 -3
  630. data/fixtures/ignore-app/source/about.html.erb +0 -1
  631. data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
  632. data/fixtures/ignore-app/source/images/pic.png +0 -0
  633. data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
  634. data/fixtures/ignore-app/source/index.html.erb +0 -0
  635. data/fixtures/ignore-app/source/plain.html +0 -1
  636. data/fixtures/ignore-app/source/reports/another.html +0 -0
  637. data/fixtures/ignore-app/source/reports/index.html +0 -0
  638. data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +0 -1
  639. data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
  640. data/fixtures/import-app/bower.json +0 -21
  641. data/fixtures/import-app/bower_components/jquery/.bower.json +0 -39
  642. data/fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt +0 -21
  643. data/fixtures/import-app/bower_components/jquery/bower.json +0 -28
  644. data/fixtures/import-app/bower_components/jquery/dist/jquery.js +0 -9210
  645. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.js +0 -5
  646. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.map +0 -1
  647. data/fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js +0 -89
  648. data/fixtures/import-app/bower_components/jquery/src/ajax/load.js +0 -75
  649. data/fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js +0 -13
  650. data/fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js +0 -28
  651. data/fixtures/import-app/bower_components/jquery/src/ajax/script.js +0 -64
  652. data/fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js +0 -5
  653. data/fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js +0 -3
  654. data/fixtures/import-app/bower_components/jquery/src/ajax/xhr.js +0 -136
  655. data/fixtures/import-app/bower_components/jquery/src/ajax.js +0 -786
  656. data/fixtures/import-app/bower_components/jquery/src/attributes/attr.js +0 -141
  657. data/fixtures/import-app/bower_components/jquery/src/attributes/classes.js +0 -158
  658. data/fixtures/import-app/bower_components/jquery/src/attributes/prop.js +0 -94
  659. data/fixtures/import-app/bower_components/jquery/src/attributes/support.js +0 -35
  660. data/fixtures/import-app/bower_components/jquery/src/attributes/val.js +0 -161
  661. data/fixtures/import-app/bower_components/jquery/src/attributes.js +0 -11
  662. data/fixtures/import-app/bower_components/jquery/src/callbacks.js +0 -205
  663. data/fixtures/import-app/bower_components/jquery/src/core/access.js +0 -60
  664. data/fixtures/import-app/bower_components/jquery/src/core/init.js +0 -123
  665. data/fixtures/import-app/bower_components/jquery/src/core/parseHTML.js +0 -39
  666. data/fixtures/import-app/bower_components/jquery/src/core/ready.js +0 -97
  667. data/fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js +0 -4
  668. data/fixtures/import-app/bower_components/jquery/src/core.js +0 -502
  669. data/fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js +0 -22
  670. data/fixtures/import-app/bower_components/jquery/src/css/curCSS.js +0 -57
  671. data/fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js +0 -70
  672. data/fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js +0 -15
  673. data/fixtures/import-app/bower_components/jquery/src/css/support.js +0 -96
  674. data/fixtures/import-app/bower_components/jquery/src/css/swap.js +0 -28
  675. data/fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js +0 -3
  676. data/fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js +0 -12
  677. data/fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js +0 -13
  678. data/fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js +0 -3
  679. data/fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js +0 -5
  680. data/fixtures/import-app/bower_components/jquery/src/css.js +0 -450
  681. data/fixtures/import-app/bower_components/jquery/src/data/Data.js +0 -181
  682. data/fixtures/import-app/bower_components/jquery/src/data/accepts.js +0 -20
  683. data/fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js +0 -5
  684. data/fixtures/import-app/bower_components/jquery/src/data/var/data_user.js +0 -5
  685. data/fixtures/import-app/bower_components/jquery/src/data.js +0 -178
  686. data/fixtures/import-app/bower_components/jquery/src/deferred.js +0 -149
  687. data/fixtures/import-app/bower_components/jquery/src/deprecated.js +0 -13
  688. data/fixtures/import-app/bower_components/jquery/src/dimensions.js +0 -50
  689. data/fixtures/import-app/bower_components/jquery/src/effects/Tween.js +0 -114
  690. data/fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js +0 -13
  691. data/fixtures/import-app/bower_components/jquery/src/effects.js +0 -648
  692. data/fixtures/import-app/bower_components/jquery/src/event/ajax.js +0 -13
  693. data/fixtures/import-app/bower_components/jquery/src/event/alias.js +0 -39
  694. data/fixtures/import-app/bower_components/jquery/src/event/support.js +0 -9
  695. data/fixtures/import-app/bower_components/jquery/src/event.js +0 -868
  696. data/fixtures/import-app/bower_components/jquery/src/exports/amd.js +0 -24
  697. data/fixtures/import-app/bower_components/jquery/src/exports/global.js +0 -32
  698. data/fixtures/import-app/bower_components/jquery/src/intro.js +0 -44
  699. data/fixtures/import-app/bower_components/jquery/src/jquery.js +0 -37
  700. data/fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js +0 -18
  701. data/fixtures/import-app/bower_components/jquery/src/manipulation/support.js +0 -32
  702. data/fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js +0 -3
  703. data/fixtures/import-app/bower_components/jquery/src/manipulation.js +0 -580
  704. data/fixtures/import-app/bower_components/jquery/src/offset.js +0 -207
  705. data/fixtures/import-app/bower_components/jquery/src/outro.js +0 -1
  706. data/fixtures/import-app/bower_components/jquery/src/queue/delay.js +0 -22
  707. data/fixtures/import-app/bower_components/jquery/src/queue.js +0 -142
  708. data/fixtures/import-app/bower_components/jquery/src/selector-native.js +0 -172
  709. data/fixtures/import-app/bower_components/jquery/src/selector-sizzle.js +0 -14
  710. data/fixtures/import-app/bower_components/jquery/src/selector.js +0 -1
  711. data/fixtures/import-app/bower_components/jquery/src/serialize.js +0 -111
  712. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js +0 -2067
  713. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js +0 -3
  714. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map +0 -1
  715. data/fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js +0 -100
  716. data/fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js +0 -6
  717. data/fixtures/import-app/bower_components/jquery/src/traversing.js +0 -199
  718. data/fixtures/import-app/bower_components/jquery/src/var/arr.js +0 -3
  719. data/fixtures/import-app/bower_components/jquery/src/var/class2type.js +0 -4
  720. data/fixtures/import-app/bower_components/jquery/src/var/concat.js +0 -5
  721. data/fixtures/import-app/bower_components/jquery/src/var/hasOwn.js +0 -5
  722. data/fixtures/import-app/bower_components/jquery/src/var/indexOf.js +0 -5
  723. data/fixtures/import-app/bower_components/jquery/src/var/pnum.js +0 -3
  724. data/fixtures/import-app/bower_components/jquery/src/var/push.js +0 -5
  725. data/fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js +0 -3
  726. data/fixtures/import-app/bower_components/jquery/src/var/slice.js +0 -5
  727. data/fixtures/import-app/bower_components/jquery/src/var/strundefined.js +0 -3
  728. data/fixtures/import-app/bower_components/jquery/src/var/support.js +0 -4
  729. data/fixtures/import-app/bower_components/jquery/src/var/toString.js +0 -5
  730. data/fixtures/import-app/bower_components/jquery/src/wrap.js +0 -79
  731. data/fixtures/import-app/config.rb +0 -7
  732. data/fixtures/import-app/source/test.html +0 -0
  733. data/fixtures/import-app/static.html +0 -1
  734. data/fixtures/indexable-app/config.rb +0 -5
  735. data/fixtures/indexable-app/source/.htaccess +0 -1
  736. data/fixtures/indexable-app/source/.htpasswd +0 -1
  737. data/fixtures/indexable-app/source/.nojekyll +0 -0
  738. data/fixtures/indexable-app/source/a_folder/needs_index.html +0 -1
  739. data/fixtures/indexable-app/source/evil spaces.html +0 -1
  740. data/fixtures/indexable-app/source/leave_me_alone.html +0 -1
  741. data/fixtures/indexable-app/source/needs_index.html +0 -1
  742. data/fixtures/indexable-app/source/regex_leave_me_alone2.html +0 -1
  743. data/fixtures/indexable-app/source/regular/index.html +0 -1
  744. data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +0 -1
  745. data/fixtures/javascript-app/config.rb +0 -0
  746. data/fixtures/javascript-app/source/index.html +0 -17
  747. data/fixtures/large-build-app/config.rb +0 -3
  748. data/fixtures/large-build-app/source/.htaccess +0 -1
  749. data/fixtures/large-build-app/source/.htpasswd +0 -1
  750. data/fixtures/large-build-app/source/_partial.erb +0 -1
  751. data/fixtures/large-build-app/source/feed.xml.builder +0 -4
  752. data/fixtures/large-build-app/source/images/Child folder/regular_file(example).txt +0 -1
  753. data/fixtures/large-build-app/source/images/Read me (example).txt +0 -1
  754. data/fixtures/large-build-app/source/images/blank.gif +0 -0
  755. data/fixtures/large-build-app/source/index.html.erb +0 -1
  756. data/fixtures/large-build-app/source/layout.erb +0 -9
  757. data/fixtures/large-build-app/source/layouts/content_for.erb +0 -4
  758. data/fixtures/large-build-app/source/layouts/custom.erb +0 -8
  759. data/fixtures/large-build-app/source/link_test.html.erb +0 -5
  760. data/fixtures/large-build-app/source/other_layout.erb +0 -1
  761. data/fixtures/large-build-app/source/services/index.html.erb +0 -1
  762. data/fixtures/large-build-app/source/spaces in file.html.erb +0 -1
  763. data/fixtures/large-build-app/source/static.html +0 -1
  764. data/fixtures/large-build-app/source/stylesheets/static.css +0 -2
  765. data/fixtures/layouts-dir-app/source/ambiguous.html.erb +0 -5
  766. data/fixtures/layouts-dir-app/source/index.html.erb +0 -2
  767. data/fixtures/layouts-dir-app/source/layouts/layout.erb +0 -3
  768. data/fixtures/layouts-dir-app/source/layouts/other.erb +0 -3
  769. data/fixtures/layouts-dir-app/source/layouts2/layout.erb +0 -3
  770. data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +0 -3
  771. data/fixtures/layouts-dir-app/source/other.erb +0 -3
  772. data/fixtures/link-to-app/config.rb +0 -0
  773. data/fixtures/link-to-app/source/link_to_erb.html.erb +0 -3
  774. data/fixtures/link-to-app/source/link_to_haml.html.haml +0 -2
  775. data/fixtures/link-to-app/source/link_to_slim.html.slim +0 -2
  776. data/fixtures/liquid-app/config.rb +0 -0
  777. data/fixtures/liquid-app/data/test.yml +0 -4
  778. data/fixtures/liquid-app/data/test2.json +0 -4
  779. data/fixtures/liquid-app/source/_liquid_partial.liquid +0 -1
  780. data/fixtures/liquid-app/source/data2.html.liquid +0 -2
  781. data/fixtures/liquid-app/source/liquid_master.html.liquid +0 -1
  782. data/fixtures/lorem-app/config.rb +0 -1
  783. data/fixtures/lorem-app/source/lorem.html.erb +0 -13
  784. data/fixtures/manual-layout/config.rb +0 -1
  785. data/fixtures/manual-layout/source/index.html.erb +0 -1
  786. data/fixtures/manual-layout/source/layouts/custom.erb +0 -9
  787. data/fixtures/manual-layout-missing/config.rb +0 -1
  788. data/fixtures/manual-layout-missing/source/index.html.erb +0 -1
  789. data/fixtures/manual-layout-override/config.rb +0 -3
  790. data/fixtures/manual-layout-override/source/index.html.erb +0 -1
  791. data/fixtures/manual-layout-override/source/layouts/another.erb +0 -9
  792. data/fixtures/manual-layout-override/source/layouts/custom.erb +0 -9
  793. data/fixtures/markdown-app/config.rb +0 -1
  794. data/fixtures/markdown-app/source/autolink.html.markdown +0 -5
  795. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +0 -7
  796. data/fixtures/markdown-app/source/filter_html.html.markdown +0 -1
  797. data/fixtures/markdown-app/source/footnote.html.markdown +0 -3
  798. data/fixtures/markdown-app/source/hard_wrap.html.markdown +0 -2
  799. data/fixtures/markdown-app/source/highlighted.html.markdown +0 -1
  800. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  801. data/fixtures/markdown-app/source/img.html.markdown +0 -1
  802. data/fixtures/markdown-app/source/indented_code_blocks.html.markdown +0 -5
  803. data/fixtures/markdown-app/source/index.html.markdown +0 -4
  804. data/fixtures/markdown-app/source/lax_spacing.html.markdown +0 -3
  805. data/fixtures/markdown-app/source/link.html.markdown +0 -1
  806. data/fixtures/markdown-app/source/mailto.html.markdown +0 -1
  807. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +0 -5
  808. data/fixtures/markdown-app/source/prettify.html.markdown +0 -3
  809. data/fixtures/markdown-app/source/quote.html.markdown +0 -1
  810. data/fixtures/markdown-app/source/safe_links.html.markdown +0 -1
  811. data/fixtures/markdown-app/source/smarty_pants.html.markdown +0 -5
  812. data/fixtures/markdown-app/source/space_after_headers.html.markdown +0 -5
  813. data/fixtures/markdown-app/source/strikethrough.html.markdown +0 -5
  814. data/fixtures/markdown-app/source/superscript.html.markdown +0 -5
  815. data/fixtures/markdown-app/source/tables.html.markdown +0 -8
  816. data/fixtures/markdown-app/source/underline.html.markdown +0 -1
  817. data/fixtures/markdown-app/source/with_toc_data.html.markdown +0 -3
  818. data/fixtures/markdown-frontmatter-options-app/config.rb +0 -1
  819. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +0 -5
  820. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +0 -7
  821. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +0 -7
  822. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +0 -8
  823. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +0 -10
  824. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +0 -10
  825. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  826. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  827. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +0 -4
  828. data/fixtures/markdown-in-slim-app/config.rb +0 -0
  829. data/fixtures/markdown-in-slim-app/source/images/blank.gif +0 -0
  830. data/fixtures/markdown-in-slim-app/source/link_target.html.markdown +0 -4
  831. data/fixtures/minify-css-app/source/inline-css.html.haml +0 -5
  832. data/fixtures/minify-css-app/source/inline-css.php +0 -8
  833. data/fixtures/minify-css-app/source/more-css/site.css +0 -3
  834. data/fixtures/minify-css-app/source/stylesheets/base/_base.scss +0 -15
  835. data/fixtures/minify-css-app/source/stylesheets/base/_buttons.scss +0 -35
  836. data/fixtures/minify-css-app/source/stylesheets/base/_forms.scss +0 -90
  837. data/fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss +0 -14
  838. data/fixtures/minify-css-app/source/stylesheets/base/_lists.scss +0 -31
  839. data/fixtures/minify-css-app/source/stylesheets/base/_tables.scss +0 -25
  840. data/fixtures/minify-css-app/source/stylesheets/base/_typography.scss +0 -49
  841. data/fixtures/minify-css-app/source/stylesheets/base/_variables.scss +0 -42
  842. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +0 -411
  843. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss +0 -87
  844. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss +0 -26
  845. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss +0 -48
  846. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss +0 -25
  847. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss +0 -25
  848. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss +0 -64
  849. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss +0 -25
  850. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss +0 -30
  851. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss +0 -31
  852. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss +0 -27
  853. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss +0 -26
  854. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss +0 -26
  855. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss +0 -48
  856. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss +0 -66
  857. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss +0 -25
  858. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss +0 -51
  859. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss +0 -113
  860. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss +0 -34
  861. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss +0 -63
  862. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss +0 -29
  863. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss +0 -43
  864. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss +0 -3
  865. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss +0 -3
  866. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss +0 -42
  867. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss +0 -55
  868. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss +0 -59
  869. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss +0 -4
  870. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss +0 -47
  871. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss +0 -4
  872. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss +0 -287
  873. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss +0 -24
  874. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss +0 -4
  875. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss +0 -10
  876. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss +0 -4
  877. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss +0 -14
  878. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss +0 -36
  879. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss +0 -38
  880. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss +0 -8
  881. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss +0 -8
  882. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss +0 -39
  883. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss +0 -42
  884. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss +0 -19
  885. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss +0 -15
  886. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss +0 -71
  887. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss +0 -3
  888. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss +0 -11
  889. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss +0 -20
  890. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss +0 -26
  891. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss +0 -11
  892. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss +0 -21
  893. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss +0 -11
  894. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss +0 -13
  895. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss +0 -69
  896. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss +0 -13
  897. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss +0 -15
  898. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss +0 -24
  899. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss +0 -17
  900. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss +0 -24
  901. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss +0 -22
  902. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss +0 -27
  903. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss +0 -21
  904. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss +0 -96
  905. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss +0 -43
  906. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +0 -13
  907. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss +0 -25
  908. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +0 -41
  909. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss +0 -61
  910. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +0 -31
  911. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss +0 -69
  912. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +0 -50
  913. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss +0 -18
  914. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss +0 -26
  915. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss +0 -10
  916. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss +0 -50
  917. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss +0 -7
  918. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss +0 -9
  919. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss +0 -1
  920. data/fixtures/minify-css-app/source/stylesheets/report.css +0 -1
  921. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +0 -7
  922. data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +0 -6
  923. data/fixtures/minify-js-app/config.rb +0 -0
  924. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +0 -3
  925. data/fixtures/minify-js-app/source/inline-js.html.haml +0 -28
  926. data/fixtures/minify-js-app/source/inline-js.php +0 -22
  927. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +0 -3
  928. data/fixtures/minify-js-app/source/javascripts/js_test.js +0 -8
  929. data/fixtures/minify-js-app/source/javascripts/js_test.xjs +0 -8
  930. data/fixtures/minify-js-app/source/more-js/other.js +0 -8
  931. data/fixtures/missing-tilt-library-app/config.rb +0 -2
  932. data/fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki +0 -1
  933. data/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki +0 -1
  934. data/fixtures/missing-tilt-library-app/source/textile-source.html.textile +0 -1
  935. data/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki +0 -1
  936. data/fixtures/more-extensionless-text-files-app/config.rb +0 -1
  937. data/fixtures/more-extensionless-text-files-app/source/CNAME +0 -1
  938. data/fixtures/more-extensionless-text-files-app/source/LICENSE +0 -1
  939. data/fixtures/more-extensionless-text-files-app/source/README +0 -1
  940. data/fixtures/more-extensionless-text-files-app/source/index.html +0 -1
  941. data/fixtures/more-frontmatter-settings-app/config.rb +0 -4
  942. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
  943. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +0 -5
  944. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +0 -3
  945. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +0 -5
  946. data/fixtures/more-ignore-app/source/about.html.erb +0 -1
  947. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  948. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  949. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  950. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  951. data/fixtures/more-ignore-app/source/plain.html +0 -1
  952. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  953. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  954. data/fixtures/more-markdown-app/source/layouts/layout.erb +0 -13
  955. data/fixtures/more-markdown-app/source/with_layout.html.markdown +0 -4
  956. data/fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb +0 -4
  957. data/fixtures/more-preview-app/config.rb +0 -0
  958. data/fixtures/more-preview-app/source/content.html.erb +0 -1
  959. data/fixtures/more-preview-app/source/layout.erb +0 -1
  960. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +0 -2
  961. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +0 -2
  962. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +0 -4
  963. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +0 -4
  964. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +0 -2
  965. data/fixtures/more-traversal-app/config.rb +0 -7
  966. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +0 -3
  967. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
  968. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  969. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  970. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  971. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  972. data/fixtures/more-traversal-app/source/layout.erb +0 -21
  973. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  974. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  975. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  976. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  977. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  978. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  979. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  980. data/fixtures/multiple-data-sources-app/config.rb +0 -3
  981. data/fixtures/multiple-data-sources-app/data/data.yml +0 -1
  982. data/fixtures/multiple-data-sources-app/data/two.yml +0 -1
  983. data/fixtures/multiple-data-sources-app/data0/one.yml +0 -1
  984. data/fixtures/multiple-data-sources-app/data1/data1.yml +0 -1
  985. data/fixtures/multiple-data-sources-app/data1/one.yml +0 -1
  986. data/fixtures/multiple-data-sources-app/data2/data2.yml +0 -1
  987. data/fixtures/multiple-data-sources-app/data2/two.yml +0 -1
  988. data/fixtures/multiple-data-sources-app/source/index.html.erb +0 -5
  989. data/fixtures/multiple-layouts/config.rb +0 -0
  990. data/fixtures/multiple-layouts/source/index.html.erb +0 -1
  991. data/fixtures/multiple-layouts/source/layout.erb +0 -9
  992. data/fixtures/multiple-layouts/source/layout.str +0 -9
  993. data/fixtures/multiple-sources-app/config.rb +0 -3
  994. data/fixtures/multiple-sources-app/source/index.html.erb +0 -1
  995. data/fixtures/multiple-sources-app/source/override-in-two.html.erb +0 -1
  996. data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +0 -1
  997. data/fixtures/multiple-sources-app/source1/index1.html.erb +0 -1
  998. data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +0 -1
  999. data/fixtures/multiple-sources-app/source2/index2.html.erb +0 -1
  1000. data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +0 -1
  1001. data/fixtures/multiple-sources-with-duplicate-file-names-app/config.rb +0 -2
  1002. data/fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb +0 -1
  1003. data/fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb +0 -1
  1004. data/fixtures/nested-data-app/config.rb +0 -1
  1005. data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +0 -1
  1006. data/fixtures/nested-data-app/data/examples/more.yml +0 -1
  1007. data/fixtures/nested-data-app/data/examples/test.yml +0 -1
  1008. data/fixtures/nested-data-app/data/examples/withcontent.yaml +0 -11
  1009. data/fixtures/nested-data-app/source/extracontent.html.haml.erb +0 -4
  1010. data/fixtures/nested-data-app/source/test.html.erb +0 -3
  1011. data/fixtures/nested-layout-app/config.rb +0 -1
  1012. data/fixtures/nested-layout-app/source/another.html.markdown +0 -7
  1013. data/fixtures/nested-layout-app/source/data-one.html.erb +0 -5
  1014. data/fixtures/nested-layout-app/source/data-two.html.erb +0 -5
  1015. data/fixtures/nested-layout-app/source/haml-test.html.markdown +0 -7
  1016. data/fixtures/nested-layout-app/source/index.html.erb +0 -6
  1017. data/fixtures/nested-layout-app/source/layouts/inner.erb +0 -7
  1018. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +0 -7
  1019. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +0 -7
  1020. data/fixtures/nested-layout-app/source/layouts/master.erb +0 -9
  1021. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +0 -7
  1022. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +0 -7
  1023. data/fixtures/nested-layout-app/source/layouts/outer.erb +0 -8
  1024. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +0 -7
  1025. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +0 -7
  1026. data/fixtures/nested-layout-app/source/slim-test.html.markdown +0 -7
  1027. data/fixtures/no-layout/config.rb +0 -0
  1028. data/fixtures/no-layout/source/index.html.erb +0 -1
  1029. data/fixtures/padrino-helpers-app/config.rb +0 -7
  1030. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +0 -6
  1031. data/fixtures/page-classes-app/config.rb +0 -2
  1032. data/fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb +0 -1
  1033. data/fixtures/page-classes-app/source/1-starts-with-numeric.html.erb +0 -1
  1034. data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +0 -1
  1035. data/fixtures/page-classes-app/source/page-classes.html.erb +0 -1
  1036. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +0 -1
  1037. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +0 -1
  1038. data/fixtures/page-helper-layout-block-app/config.rb +0 -6
  1039. data/fixtures/page-helper-layout-block-app/source/index.html.erb +0 -1
  1040. data/fixtures/page-helper-layout-block-app/source/layouts/alt.erb +0 -3
  1041. data/fixtures/page-helper-layout-block-app/source/layouts/layout.erb +0 -3
  1042. data/fixtures/page-helper-layout-block-app/source/path/child.html.erb +0 -1
  1043. data/fixtures/page-helper-layout-block-app/source/path/index.html.erb +0 -1
  1044. data/fixtures/page-id-app/config-proc.rb +0 -7
  1045. data/fixtures/page-id-app/config.rb +0 -5
  1046. data/fixtures/page-id-app/source/feed.xml.erb +0 -1
  1047. data/fixtures/page-id-app/source/fm.html.erb +0 -5
  1048. data/fixtures/page-id-app/source/folder/foldern.html.erb +0 -1
  1049. data/fixtures/page-id-app/source/fourty-two.html.erb +0 -5
  1050. data/fixtures/page-id-app/source/implicit.html.erb +0 -1
  1051. data/fixtures/page-id-app/source/index.html.erb +0 -15
  1052. data/fixtures/page-id-app/source/overwrites/from-default.html.erb +0 -1
  1053. data/fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb +0 -5
  1054. data/fixtures/paginate-app/config.rb +0 -0
  1055. data/fixtures/paginate-app/source/archive/2011/index.html.erb +0 -20
  1056. data/fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown +0 -6
  1057. data/fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown +0 -6
  1058. data/fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown +0 -6
  1059. data/fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown +0 -6
  1060. data/fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown +0 -6
  1061. data/fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown +0 -6
  1062. data/fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown +0 -6
  1063. data/fixtures/paginate-app/source/index.html.erb +0 -15
  1064. data/fixtures/paginate-app/source/tag.html.erb +0 -23
  1065. data/fixtures/partial-chained_templates-app/config.rb +0 -0
  1066. data/fixtures/partials-app/config.rb +0 -0
  1067. data/fixtures/partials-app/source/_block.erb +0 -3
  1068. data/fixtures/partials-app/source/_code_snippet.html +0 -1
  1069. data/fixtures/partials-app/source/_locals.erb +0 -1
  1070. data/fixtures/partials-app/source/_main.erb +0 -1
  1071. data/fixtures/partials-app/source/_main.str +0 -1
  1072. data/fixtures/partials-app/source/block.html.erb +0 -3
  1073. data/fixtures/partials-app/source/images/tiger.svg +0 -725
  1074. data/fixtures/partials-app/source/index.html.erb +0 -3
  1075. data/fixtures/partials-app/source/index_missing.html.erb +0 -3
  1076. data/fixtures/partials-app/source/locals.html.erb +0 -1
  1077. data/fixtures/partials-app/source/second.html.str +0 -3
  1078. data/fixtures/partials-app/source/shared/_footer.erb +0 -1
  1079. data/fixtures/partials-app/source/shared/_header.erb +0 -1
  1080. data/fixtures/partials-app/source/shared/_snippet.html.erb +0 -1
  1081. data/fixtures/partials-app/source/static_underscore.html.erb +0 -1
  1082. data/fixtures/partials-app/source/sub/_local.erb +0 -1
  1083. data/fixtures/partials-app/source/sub/index.html.erb +0 -3
  1084. data/fixtures/partials-app/source/svg.html.erb +0 -1
  1085. data/fixtures/partials-app/source/using_snippet.html.erb +0 -1
  1086. data/fixtures/passthrough-app/source/.htaccess +0 -1
  1087. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +0 -3
  1088. data/fixtures/passthrough-app/source/inline-css.html.haml +0 -4
  1089. data/fixtures/passthrough-app/source/inline-js.html.haml +0 -28
  1090. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +0 -3
  1091. data/fixtures/passthrough-app/source/javascripts/js_test.js +0 -8
  1092. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +0 -5
  1093. data/fixtures/preview-app/config.rb +0 -0
  1094. data/fixtures/preview-app/source/content.html.erb +0 -1
  1095. data/fixtures/preview-app/source/layout.erb +0 -1
  1096. data/fixtures/proxy-pages-app/config.rb +0 -18
  1097. data/fixtures/proxy-pages-app/source/real/index.html.erb +0 -5
  1098. data/fixtures/proxy-pages-app/source/real.html +0 -1
  1099. data/fixtures/proxy-pages-app/source/should_be_ignored3.html +0 -1
  1100. data/fixtures/proxy-pages-app/source/should_be_ignored6.html +0 -1
  1101. data/fixtures/proxy-pages-app/source/should_be_ignored7.html +0 -1
  1102. data/fixtures/proxy-pages-app/source/should_be_ignored8.html +0 -1
  1103. data/fixtures/related-files-app/config.rb +0 -0
  1104. data/fixtures/related-files-app/source/index.html.erb +0 -0
  1105. data/fixtures/related-files-app/source/partials/_test.erb +0 -0
  1106. data/fixtures/related-files-app/source/partials/_test2.haml +0 -0
  1107. data/fixtures/related-files-app/source/stylesheets/_include3.sass +0 -0
  1108. data/fixtures/related-files-app/source/stylesheets/_include4.scss +0 -0
  1109. data/fixtures/related-files-app/source/stylesheets/include1.css +0 -0
  1110. data/fixtures/related-files-app/source/stylesheets/include2.css.scss +0 -0
  1111. data/fixtures/related-files-app/source/stylesheets/site.css.scss +0 -0
  1112. data/fixtures/relative-app/config.rb +0 -0
  1113. data/fixtures/relative-app/source/images/blank.gif +0 -0
  1114. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +0 -2
  1115. data/fixtures/relative-assets-app/config.rb +0 -5
  1116. data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +0 -9
  1117. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot +0 -0
  1118. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg +0 -0
  1119. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf +0 -0
  1120. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff +0 -0
  1121. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  1122. data/fixtures/relative-assets-app/source/images/blank2.gif +0 -0
  1123. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  1124. data/fixtures/relative-assets-app/source/javascripts/app.js +0 -3
  1125. data/fixtures/relative-assets-app/source/javascripts/application.js +0 -8
  1126. data/fixtures/relative-assets-app/source/relative_image.html.erb +0 -9
  1127. data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +0 -9
  1128. data/fixtures/relative-assets-app/source/stylesheets/fonts.css +0 -10
  1129. data/fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss +0 -10
  1130. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +0 -2
  1131. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +0 -1
  1132. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +0 -1
  1133. data/fixtures/sass-assets-path-app/config.rb +0 -4
  1134. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +0 -2
  1135. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +0 -16
  1136. data/fixtures/sass-in-slim-app/config.rb +0 -0
  1137. data/fixtures/scss-app/config.rb +0 -0
  1138. data/fixtures/scss-app/source/stylesheets/error.css.sass +0 -1
  1139. data/fixtures/scss-app/source/stylesheets/layout.css.sass +0 -2
  1140. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +0 -3
  1141. data/fixtures/sinatra-app/config.rb +0 -14
  1142. data/fixtures/sinatra-app/source/index.html.erb +0 -5
  1143. data/fixtures/slim-content-for-app/config.rb +0 -0
  1144. data/fixtures/slim-content-for-app/source/index.html.slim +0 -7
  1145. data/fixtures/slim-content-for-app/source/layouts/layout.slim +0 -15
  1146. data/fixtures/strip-url-app/config.rb +0 -0
  1147. data/fixtures/strip-url-app/source/index.html.erb +0 -1
  1148. data/fixtures/strip-url-app/source/other.html.erb +0 -1
  1149. data/fixtures/strip-url-app/source/subdir/index.html.erb +0 -1
  1150. data/fixtures/stylus-preview-app/config.rb +0 -0
  1151. data/fixtures/stylus-preview-app/source/content.html.erb +0 -5
  1152. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +0 -2
  1153. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +0 -2
  1154. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +0 -4
  1155. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +0 -4
  1156. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +0 -2
  1157. data/fixtures/traversal-app/config.rb +0 -5
  1158. data/fixtures/traversal-app/source/.htaccess +0 -0
  1159. data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +0 -3
  1160. data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
  1161. data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  1162. data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  1163. data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
  1164. data/fixtures/traversal-app/source/index.html.erb +0 -0
  1165. data/fixtures/traversal-app/source/layout.erb +0 -21
  1166. data/fixtures/traversal-app/source/proxied.html.erb +0 -0
  1167. data/fixtures/traversal-app/source/root.html.erb +0 -0
  1168. data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
  1169. data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
  1170. data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
  1171. data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
  1172. data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
  1173. data/fixtures/v4-extension-callbacks/config.rb +0 -42
  1174. data/fixtures/v4-extension-callbacks/source/index.html.erb +0 -2
  1175. data/fixtures/wildcard-app/config.rb +0 -1
  1176. data/fixtures/wildcard-app/source/admin/index.html.erb +0 -1
  1177. data/fixtures/wildcard-app/source/admin/page.html.erb +0 -1
  1178. data/fixtures/wildcard-app/source/index.html.erb +0 -1
  1179. data/fixtures/wildcard-app/source/layouts/admin.erb +0 -2
  1180. data/fixtures/wildcard-app/source/layouts/layout.erb +0 -2
  1181. data/fixtures/wildcard-directory-index-app/config.rb +0 -2
  1182. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +0 -1
  1183. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +0 -1
  1184. data/fixtures/wildcard-directory-index-app/source/index.html.erb +0 -1
  1185. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +0 -2
  1186. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +0 -2
  1187. data/lib/middleman-core/core_extensions/inline_url_rewriter.rb +0 -140
  1188. data/spec/middleman-core/binary_spec/middleman +0 -0
  1189. data/spec/middleman-core/binary_spec/middleman.png +0 -0
  1190. data/spec/middleman-core/binary_spec/plain.txt +0 -1
  1191. data/spec/middleman-core/binary_spec/stars.svgz +0 -0
  1192. data/spec/middleman-core/binary_spec/unicode +0 -1
  1193. data/spec/middleman-core/binary_spec/unicode.txt +0 -1
  1194. data/spec/middleman-core/callbacks_spec.rb +0 -132
  1195. data/spec/middleman-core/core_extensions/data_spec.rb +0 -147
  1196. data/spec/middleman-core/dns_resolver_spec.rb +0 -102
  1197. data/spec/middleman-core/preview_server/server_hostname_spec.rb +0 -39
  1198. data/spec/middleman-core/preview_server/server_ip_address_spec.rb +0 -43
  1199. data/spec/middleman-core/util_spec.rb +0 -230
  1200. data/spec/spec_helper.rb +0 -31
  1201. data/spec/support/given.rb +0 -42
@@ -1,96 +0,0 @@
1
- <!--
2
- PIE: CSS3 rendering for IE
3
- Version 1.0beta5
4
- http://css3pie.com
5
- Dual-licensed for use under the Apache License Version 2.0 or the General Public License (GPL) Version 2.
6
- -->
7
- <PUBLIC:COMPONENT lightWeight="true">
8
- <!-- saved from url=(0014)about:internet -->
9
- <PUBLIC:ATTACH EVENT="oncontentready" FOR="element" ONEVENT="init()" />
10
- <PUBLIC:ATTACH EVENT="ondocumentready" FOR="element" ONEVENT="init()" />
11
- <PUBLIC:ATTACH EVENT="ondetach" FOR="element" ONEVENT="cleanup()" />
12
-
13
- <script type="text/javascript">
14
- var doc = element.document;var f=window.PIE;
15
- if(!f){f=window.PIE={Q:"-pie-",nb:"Pie",La:"pie_",Ac:{TD:1,TH:1},cc:{TABLE:1,THEAD:1,TBODY:1,TFOOT:1,TR:1,INPUT:1,TEXTAREA:1,SELECT:1,OPTION:1,IMG:1,HR:1},fc:{A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},Gd:{submit:1,button:1,reset:1},aa:function(){}};try{doc.execCommand("BackgroundImageCache",false,true)}catch(aa){}for(var X=4,Y=doc.createElement("div"),ca=Y.getElementsByTagName("i"),Z;Y.innerHTML="<!--[if gt IE "+ ++X+"]><i></i><![endif]--\>",ca[0];);f.V=X;if(X===6)f.Q=f.Q.replace(/^-/,"");f.Ba=doc.documentMode||
16
- f.V;Y.innerHTML='<v:shape adj="1"/>';Z=Y.firstChild;Z.style.behavior="url(#default#VML)";f.zc=typeof Z.adj==="object";(function(){var a,b=0,c={};f.p={Za:function(d){if(!a){a=doc.createDocumentFragment();a.namespaces.add("css3vml","urn:schemas-microsoft-com:vml")}return a.createElement("css3vml:"+d)},Aa:function(d){return d&&d._pieId||(d._pieId="_"+ ++b)},Eb:function(d){var e,g,i,j,h=arguments;e=1;for(g=h.length;e<g;e++){j=h[e];for(i in j)if(j.hasOwnProperty(i))d[i]=j[i]}return d},Rb:function(d,e,
17
- g){var i=c[d],j,h;if(i)Object.prototype.toString.call(i)==="[object Array]"?i.push([e,g]):e.call(g,i);else{h=c[d]=[[e,g]];j=new Image;j.onload=function(){i=c[d]={i:j.width,f:j.height};for(var k=0,n=h.length;k<n;k++)h[k][0].call(h[k][1],i);j.onload=null};j.src=d}}}})();f.Na={gc:function(a,b,c,d){function e(){k=i>=90&&i<270?b:0;n=i<180?c:0;l=b-k;q=c-n}function g(){for(;i<0;)i+=360;i%=360}var i=d.ra;d=d.zb;var j,h,k,n,l,q,s,m;if(d){d=d.coords(a,b,c);j=d.x;h=d.y}if(i){i=i.jd();g();e();if(!d){j=k;h=n}d=
18
- f.Na.tc(j,h,i,l,q);a=d[0];d=d[1]}else if(d){a=b-j;d=c-h}else{j=h=a=0;d=c}s=a-j;m=d-h;if(i===void 0){i=!s?m<0?90:270:!m?s<0?180:0:-Math.atan2(m,s)/Math.PI*180;g();e()}return{ra:i,xc:j,yc:h,td:a,ud:d,Vd:k,Wd:n,rd:l,sd:q,kd:s,ld:m,rc:f.Na.dc(j,h,a,d)}},tc:function(a,b,c,d,e){if(c===0||c===180)return[d,b];else if(c===90||c===270)return[a,e];else{c=Math.tan(-c*Math.PI/180);a=c*a-b;b=-1/c;d=b*d-e;e=b-c;return[(d-a)/e,(c*d-b*a)/e]}},dc:function(a,b,c,d){a=c-a;b=d-b;return Math.abs(a===0?b:b===0?a:Math.sqrt(a*
19
- a+b*b))}};f.ea=function(){this.Gb=[];this.oc={}};f.ea.prototype={ba:function(a){var b=f.p.Aa(a),c=this.oc,d=this.Gb;if(!(b in c)){c[b]=d.length;d.push(a)}},Ha:function(a){a=f.p.Aa(a);var b=this.oc;if(a&&a in b){delete this.Gb[b[a]];delete b[a]}},wa:function(){for(var a=this.Gb,b=a.length;b--;)a[b]&&a[b]()}};f.Oa=new f.ea;f.Oa.Qd=function(){var a=this;if(!a.Rd){setInterval(function(){a.wa()},250);a.Rd=1}};(function(){function a(){f.K.wa();window.detachEvent("onunload",a);window.PIE=null}f.K=new f.ea;
20
- window.attachEvent("onunload",a);f.K.sa=function(b,c,d){b.attachEvent(c,d);this.ba(function(){b.detachEvent(c,d)})}})();f.Qa=new f.ea;f.K.sa(window,"onresize",function(){f.Qa.wa()});(function(){function a(){f.mb.wa()}f.mb=new f.ea;f.K.sa(window,"onscroll",a);f.Qa.ba(a)})();(function(){function a(){c=f.kb.md()}function b(){if(c){for(var d=0,e=c.length;d<e;d++)f.attach(c[d]);c=0}}var c;f.K.sa(window,"onbeforeprint",a);f.K.sa(window,"onafterprint",b)})();f.lb=new f.ea;f.K.sa(doc,"onmouseup",function(){f.lb.wa()});
21
- f.ge=function(){function a(h){this.Y=h}var b=doc.createElement("length-calc"),c=doc.documentElement,d=b.style,e={},g=["mm","cm","in","pt","pc"],i=g.length,j={};d.position="absolute";d.top=d.left="-9999px";for(c.appendChild(b);i--;){b.style.width="100"+g[i];e[g[i]]=b.offsetWidth/100}c.removeChild(b);b.style.width="1em";a.prototype={Kb:/(px|em|ex|mm|cm|in|pt|pc|%)$/,ic:function(){var h=this.Id;if(h===void 0)h=this.Id=parseFloat(this.Y);return h},yb:function(){var h=this.$d;if(!h)h=this.$d=(h=this.Y.match(this.Kb))&&
22
- h[0]||"px";return h},a:function(h,k){var n=this.ic(),l=this.yb();switch(l){case "px":return n;case "%":return n*(typeof k==="function"?k():k)/100;case "em":return n*this.xb(h);case "ex":return n*this.xb(h)/2;default:return n*e[l]}},xb:function(h){var k=h.currentStyle.fontSize,n,l;if(k.indexOf("px")>0)return parseFloat(k);else if(h.tagName in f.cc){l=this;n=h.parentNode;return f.n(k).a(n,function(){return l.xb(n)})}else{h.appendChild(b);k=b.offsetWidth;b.parentNode===h&&h.removeChild(b);return k}}};
23
- f.n=function(h){return j[h]||(j[h]=new a(h))};return a}();f.Ja=function(){function a(e){this.X=e}var b=f.n("50%"),c={top:1,center:1,bottom:1},d={left:1,center:1,right:1};a.prototype={zd:function(){if(!this.ac){var e=this.X,g=e.length,i=f.v,j=i.pa,h=f.n("0");j=j.ma;h=["left",h,"top",h];if(g===1){e.push(new i.ob(j,"center"));g++}if(g===2){j&(e[0].k|e[1].k)&&e[0].d in c&&e[1].d in d&&e.push(e.shift());if(e[0].k&j)if(e[0].d==="center")h[1]=b;else h[0]=e[0].d;else if(e[0].W())h[1]=f.n(e[0].d);if(e[1].k&
24
- j)if(e[1].d==="center")h[3]=b;else h[2]=e[1].d;else if(e[1].W())h[3]=f.n(e[1].d)}this.ac=h}return this.ac},coords:function(e,g,i){var j=this.zd(),h=j[1].a(e,g);e=j[3].a(e,i);return{x:j[0]==="right"?g-h:h,y:j[2]==="bottom"?i-e:e}}};return a}();f.Ka=function(){function a(b,c){this.i=b;this.f=c}a.prototype={a:function(b,c,d,e,g){var i=this.i,j=this.f,h=c/d;e=e/g;if(i==="contain"){i=e>h?c:d*e;j=e>h?c/e:d}else if(i==="cover"){i=e<h?c:d*e;j=e<h?c/e:d}else if(i==="auto"){j=j==="auto"?g:j.a(b,d);i=j*e}else{i=
25
- i.a(b,c);j=j==="auto"?i/e:j.a(b,d)}return{i:i,f:j}}};a.Kc=new a("auto","auto");return a}();f.Ec=function(){function a(b){this.Y=b}a.prototype={Kb:/[a-z]+$/i,yb:function(){return this.ad||(this.ad=this.Y.match(this.Kb)[0].toLowerCase())},jd:function(){var b=this.Vc,c;if(b===undefined){b=this.yb();c=parseFloat(this.Y,10);b=this.Vc=b==="deg"?c:b==="rad"?c/Math.PI*180:b==="grad"?c/400*360:b==="turn"?c*360:0}return b}};return a}();f.Jc=function(){function a(c){this.Y=c}var b={};a.Pd=/\s*rgba\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d+|\d*\.\d+)\s*\)\s*/;
26
- a.Fb={aliceblue:"F0F8FF",antiquewhite:"FAEBD7",aqua:"0FF",aquamarine:"7FFFD4",azure:"F0FFFF",beige:"F5F5DC",bisque:"FFE4C4",black:"000",blanchedalmond:"FFEBCD",blue:"00F",blueviolet:"8A2BE2",brown:"A52A2A",burlywood:"DEB887",cadetblue:"5F9EA0",chartreuse:"7FFF00",chocolate:"D2691E",coral:"FF7F50",cornflowerblue:"6495ED",cornsilk:"FFF8DC",crimson:"DC143C",cyan:"0FF",darkblue:"00008B",darkcyan:"008B8B",darkgoldenrod:"B8860B",darkgray:"A9A9A9",darkgreen:"006400",darkkhaki:"BDB76B",darkmagenta:"8B008B",
27
- darkolivegreen:"556B2F",darkorange:"FF8C00",darkorchid:"9932CC",darkred:"8B0000",darksalmon:"E9967A",darkseagreen:"8FBC8F",darkslateblue:"483D8B",darkslategray:"2F4F4F",darkturquoise:"00CED1",darkviolet:"9400D3",deeppink:"FF1493",deepskyblue:"00BFFF",dimgray:"696969",dodgerblue:"1E90FF",firebrick:"B22222",floralwhite:"FFFAF0",forestgreen:"228B22",fuchsia:"F0F",gainsboro:"DCDCDC",ghostwhite:"F8F8FF",gold:"FFD700",goldenrod:"DAA520",gray:"808080",green:"008000",greenyellow:"ADFF2F",honeydew:"F0FFF0",
28
- hotpink:"FF69B4",indianred:"CD5C5C",indigo:"4B0082",ivory:"FFFFF0",khaki:"F0E68C",lavender:"E6E6FA",lavenderblush:"FFF0F5",lawngreen:"7CFC00",lemonchiffon:"FFFACD",lightblue:"ADD8E6",lightcoral:"F08080",lightcyan:"E0FFFF",lightgoldenrodyellow:"FAFAD2",lightgreen:"90EE90",lightgrey:"D3D3D3",lightpink:"FFB6C1",lightsalmon:"FFA07A",lightseagreen:"20B2AA",lightskyblue:"87CEFA",lightslategray:"789",lightsteelblue:"B0C4DE",lightyellow:"FFFFE0",lime:"0F0",limegreen:"32CD32",linen:"FAF0E6",magenta:"F0F",
29
- maroon:"800000",mediumauqamarine:"66CDAA",mediumblue:"0000CD",mediumorchid:"BA55D3",mediumpurple:"9370D8",mediumseagreen:"3CB371",mediumslateblue:"7B68EE",mediumspringgreen:"00FA9A",mediumturquoise:"48D1CC",mediumvioletred:"C71585",midnightblue:"191970",mintcream:"F5FFFA",mistyrose:"FFE4E1",moccasin:"FFE4B5",navajowhite:"FFDEAD",navy:"000080",oldlace:"FDF5E6",olive:"808000",olivedrab:"688E23",orange:"FFA500",orangered:"FF4500",orchid:"DA70D6",palegoldenrod:"EEE8AA",palegreen:"98FB98",paleturquoise:"AFEEEE",
30
- palevioletred:"D87093",papayawhip:"FFEFD5",peachpuff:"FFDAB9",peru:"CD853F",pink:"FFC0CB",plum:"DDA0DD",powderblue:"B0E0E6",purple:"800080",red:"F00",rosybrown:"BC8F8F",royalblue:"4169E1",saddlebrown:"8B4513",salmon:"FA8072",sandybrown:"F4A460",seagreen:"2E8B57",seashell:"FFF5EE",sienna:"A0522D",silver:"C0C0C0",skyblue:"87CEEB",slateblue:"6A5ACD",slategray:"708090",snow:"FFFAFA",springgreen:"00FF7F",steelblue:"4682B4",tan:"D2B48C",teal:"008080",thistle:"D8BFD8",tomato:"FF6347",turquoise:"40E0D0",
31
- violet:"EE82EE",wheat:"F5DEB3",white:"FFF",whitesmoke:"F5F5F5",yellow:"FF0",yellowgreen:"9ACD32"};a.prototype={parse:function(){if(!this.Ua){var c=this.Y,d;if(d=c.match(a.Pd)){this.Ua="rgb("+d[1]+","+d[2]+","+d[3]+")";this.Yb=parseFloat(d[4])}else{if((d=c.toLowerCase())in a.Fb)c="#"+a.Fb[d];this.Ua=c;this.Yb=c==="transparent"?0:1}}},T:function(c){this.parse();return this.Ua==="currentColor"?c.currentStyle.color:this.Ua},fa:function(){this.parse();return this.Yb}};f.ha=function(c){return b[c]||(b[c]=
32
- new a(c))};return a}();f.v=function(){function a(c){this.$a=c;this.ch=0;this.X=[];this.Ga=0}var b=a.pa={Ia:1,Wb:2,B:4,Lc:8,Xb:16,ma:32,J:64,na:128,oa:256,Ra:512,Tc:1024,URL:2048};a.ob=function(c,d){this.k=c;this.d=d};a.ob.prototype={Ca:function(){return this.k&b.J||this.k&b.na&&this.d==="0"},W:function(){return this.Ca()||this.k&b.Ra}};a.prototype={ce:/\s/,Jd:/^[\+\-]?(\d*\.)?\d+/,url:/^url\(\s*("([^"]*)"|'([^']*)'|([!#$%&*-~]*))\s*\)/i,nc:/^\-?[_a-z][\w-]*/i,Xd:/^("([^"]*)"|'([^']*)')/,Bd:/^#([\da-f]{6}|[\da-f]{3})/i,
33
- ae:{px:b.J,em:b.J,ex:b.J,mm:b.J,cm:b.J,"in":b.J,pt:b.J,pc:b.J,deg:b.Ia,rad:b.Ia,grad:b.Ia},fd:{rgb:1,rgba:1,hsl:1,hsla:1},next:function(c){function d(q,s){q=new a.ob(q,s);if(!c){k.X.push(q);k.Ga++}return q}function e(){k.Ga++;return null}var g,i,j,h,k=this;if(this.Ga<this.X.length)return this.X[this.Ga++];for(;this.ce.test(this.$a.charAt(this.ch));)this.ch++;if(this.ch>=this.$a.length)return e();i=this.ch;g=this.$a.substring(this.ch);j=g.charAt(0);switch(j){case "#":if(h=g.match(this.Bd)){this.ch+=
34
- h[0].length;return d(b.B,h[0])}break;case '"':case "'":if(h=g.match(this.Xd)){this.ch+=h[0].length;return d(b.Tc,h[2]||h[3]||"")}break;case "/":case ",":this.ch++;return d(b.oa,j);case "u":if(h=g.match(this.url)){this.ch+=h[0].length;return d(b.URL,h[2]||h[3]||h[4]||"")}}if(h=g.match(this.Jd)){j=h[0];this.ch+=j.length;if(g.charAt(j.length)==="%"){this.ch++;return d(b.Ra,j+"%")}if(h=g.substring(j.length).match(this.nc)){j+=h[0];this.ch+=h[0].length;return d(this.ae[h[0].toLowerCase()]||b.Lc,j)}return d(b.na,
35
- j)}if(h=g.match(this.nc)){j=h[0];this.ch+=j.length;if(j.toLowerCase()in f.Jc.Fb||j==="currentColor"||j==="transparent")return d(b.B,j);if(g.charAt(j.length)==="("){this.ch++;if(j.toLowerCase()in this.fd){g=function(q){return q&&q.k&b.na};h=function(q){return q&&q.k&(b.na|b.Ra)};var n=function(q,s){return q&&q.d===s},l=function(){return k.next(1)};if((j.charAt(0)==="r"?h(l()):g(l()))&&n(l(),",")&&h(l())&&n(l(),",")&&h(l())&&(j==="rgb"||j==="hsa"||n(l(),",")&&g(l()))&&n(l(),")"))return d(b.B,this.$a.substring(i,
36
- this.ch));return e()}return d(b.Xb,j)}return d(b.ma,j)}this.ch++;return d(b.Wb,j)},D:function(){return this.X[this.Ga-- -2]},all:function(){for(;this.next(););return this.X},la:function(c,d){for(var e=[],g,i;g=this.next();){if(c(g)){i=true;this.D();break}e.push(g)}return d&&!i?null:e}};return a}();var da=function(a){this.e=a};da.prototype={Z:0,Nd:function(){var a=this.qb,b;return!a||(b=this.o())&&(a.x!==b.x||a.y!==b.y)},Sd:function(){var a=this.qb,b;return!a||(b=this.o())&&(a.i!==b.i||a.f!==b.f)},
37
- hc:function(){var a=this.e,b=a.getBoundingClientRect(),c=f.Ba===9;return{x:b.left,y:b.top,i:c?a.offsetWidth:b.right-b.left,f:c?a.offsetHeight:b.bottom-b.top}},o:function(){return this.Z?this.Va||(this.Va=this.hc()):this.hc()},Ad:function(){return!!this.qb},cb:function(){++this.Z},hb:function(){if(!--this.Z){if(this.Va)this.qb=this.Va;this.Va=null}}};(function(){function a(b){var c=f.p.Aa(b);return function(){if(this.Z){var d=this.$b||(this.$b={});return c in d?d[c]:(d[c]=b.call(this))}else return b.call(this)}}
38
- f.C={Z:0,ja:function(b){function c(d){this.e=d;this.Zb=this.ia()}f.p.Eb(c.prototype,f.C,b);c.$c={};return c},j:function(){var b=this.ia(),c=this.constructor.$c;return b?b in c?c[b]:(c[b]=this.ka(b)):null},ia:a(function(){var b=this.e,c=this.constructor,d=b.style;b=b.currentStyle;var e=this.va,g=this.Fa,i=c.Yc||(c.Yc=f.Q+e);c=c.Zc||(c.Zc=f.nb+g.charAt(0).toUpperCase()+g.substring(1));return d[c]||b.getAttribute(i)||d[g]||b.getAttribute(e)}),h:a(function(){return!!this.j()}),G:a(function(){var b=this.ia(),
39
- c=b!==this.Zb;this.Zb=b;return c}),ua:a,cb:function(){++this.Z},hb:function(){--this.Z||delete this.$b}}})();f.Sb=f.C.ja({va:f.Q+"background",Fa:f.nb+"Background",cd:{scroll:1,fixed:1,local:1},fb:{"repeat-x":1,"repeat-y":1,repeat:1,"no-repeat":1},sc:{"padding-box":1,"border-box":1,"content-box":1},Od:{top:1,right:1,bottom:1,left:1,center:1},Td:{contain:1,cover:1},eb:{Ma:"backgroundClip",B:"backgroundColor",da:"backgroundImage",Pa:"backgroundOrigin",R:"backgroundPosition",S:"backgroundRepeat",Sa:"backgroundSize"},
40
- ka:function(a){function b(v){return v&&v.W()||v.k&k&&v.d in m}function c(v){return v&&(v.W()&&f.n(v.d)||v.d==="auto"&&"auto")}var d=this.e.currentStyle,e,g,i,j=f.v.pa,h=j.oa,k=j.ma,n=j.B,l,q,s=0,m=this.Od,r,p,t={L:[]};if(this.wb()){e=new f.v(a);for(i={};g=e.next();){l=g.k;q=g.d;if(!i.N&&l&j.Xb&&q==="linear-gradient"){r={ca:[],N:q};for(p={};g=e.next();){l=g.k;q=g.d;if(l&j.Wb&&q===")"){p.color&&r.ca.push(p);r.ca.length>1&&f.p.Eb(i,r);break}if(l&n){if(r.ra||r.zb){g=e.D();if(g.k!==h)break;e.next()}p=
41
- {color:f.ha(q)};g=e.next();if(g.W())p.db=f.n(g.d);else e.D()}else if(l&j.Ia&&!r.ra&&!p.color&&!r.ca.length)r.ra=new f.Ec(g.d);else if(b(g)&&!r.zb&&!p.color&&!r.ca.length){e.D();r.zb=new f.Ja(e.la(function(v){return!b(v)},false))}else if(l&h&&q===","){if(p.color){r.ca.push(p);p={}}}else break}}else if(!i.N&&l&j.URL){i.Ab=q;i.N="image"}else if(b(g)&&!i.$){e.D();i.$=new f.Ja(e.la(function(v){return!b(v)},false))}else if(l&k)if(q in this.fb&&!i.bb)i.bb=q;else if(q in this.sc&&!i.Wa){i.Wa=q;if((g=e.next())&&
42
- g.k&k&&g.d in this.sc)i.ub=g.d;else{i.ub=q;e.D()}}else if(q in this.cd&&!i.bc)i.bc=q;else return null;else if(l&n&&!t.color)t.color=f.ha(q);else if(l&h&&q==="/"&&!i.Xa&&i.$){g=e.next();if(g.k&k&&g.d in this.Td)i.Xa=new f.Ka(g.d);else if(g=c(g)){l=c(e.next());if(!l){l=g;e.D()}i.Xa=new f.Ka(g,l)}else return null}else if(l&h&&q===","&&i.N){i.Hb=a.substring(s,e.ch-1);s=e.ch;t.L.push(i);i={}}else return null}if(i.N){i.Hb=a.substring(s);t.L.push(i)}}else this.Bc(f.Ba<9?function(){var v=this.eb,o=d[v.R+
43
- "X"],u=d[v.R+"Y"],x=d[v.da],y=d[v.B];if(y!=="transparent")t.color=f.ha(y);if(x!=="none")t.L=[{N:"image",Ab:(new f.v(x)).next().d,bb:d[v.S],$:new f.Ja((new f.v(o+" "+u)).all())}]}:function(){var v=this.eb,o=/\s*,\s*/,u=d[v.da].split(o),x=d[v.B],y,z,D,G,E,B;if(x!=="transparent")t.color=f.ha(x);if((G=u.length)&&u[0]!=="none"){x=d[v.S].split(o);y=d[v.R].split(o);z=d[v.Pa].split(o);D=d[v.Ma].split(o);v=d[v.Sa].split(o);t.L=[];for(o=0;o<G;o++)if((E=u[o])&&E!=="none"){B=v[o].split(" ");t.L.push({Hb:E+" "+
44
- x[o]+" "+y[o]+" / "+v[o]+" "+z[o]+" "+D[o],N:"image",Ab:(new f.v(E)).next().d,bb:x[o],$:new f.Ja((new f.v(y[o])).all()),Wa:z[o],ub:D[o],Xa:new f.Ka(B[0],B[1])})}}});return t.color||t.L[0]?t:null},Bc:function(a){var b=f.Ba>8,c=this.eb,d=this.e.runtimeStyle,e=d[c.da],g=d[c.B],i=d[c.S],j,h,k,n;if(e)d[c.da]="";if(g)d[c.B]="";if(i)d[c.S]="";if(b){j=d[c.Ma];h=d[c.Pa];n=d[c.R];k=d[c.Sa];if(j)d[c.Ma]="";if(h)d[c.Pa]="";if(n)d[c.R]="";if(k)d[c.Sa]=""}a=a.call(this);if(e)d[c.da]=e;if(g)d[c.B]=g;if(i)d[c.S]=
45
- i;if(b){if(j)d[c.Ma]=j;if(h)d[c.Pa]=h;if(n)d[c.R]=n;if(k)d[c.Sa]=k}return a},ia:f.C.ua(function(){return this.wb()||this.Bc(function(){var a=this.e.currentStyle,b=this.eb;return a[b.B]+" "+a[b.da]+" "+a[b.S]+" "+a[b.R+"X"]+" "+a[b.R+"Y"]})}),wb:f.C.ua(function(){var a=this.e;return a.style[this.Fa]||a.currentStyle.getAttribute(this.va)}),qc:function(){var a=0;if(f.V<7){a=this.e;a=""+(a.style[f.nb+"PngFix"]||a.currentStyle.getAttribute(f.Q+"png-fix"))==="true"}return a},h:f.C.ua(function(){return(this.wb()||
46
- this.qc())&&!!this.j()})});f.Vb=f.C.ja({wc:["Top","Right","Bottom","Left"],Hd:{thin:"1px",medium:"3px",thick:"5px"},ka:function(){var a={},b={},c={},d=false,e=true,g=true,i=true;this.Cc(function(){for(var j=this.e.currentStyle,h=0,k,n,l,q,s,m,r;h<4;h++){l=this.wc[h];r=l.charAt(0).toLowerCase();k=b[r]=j["border"+l+"Style"];n=j["border"+l+"Color"];l=j["border"+l+"Width"];if(h>0){if(k!==q)g=false;if(n!==s)e=false;if(l!==m)i=false}q=k;s=n;m=l;c[r]=f.ha(n);l=a[r]=f.n(b[r]==="none"?"0":this.Hd[l]||l);if(l.a(this.e)>
47
- 0)d=true}});return d?{I:a,Yd:b,gd:c,de:i,hd:e,Zd:g}:null},ia:f.C.ua(function(){var a=this.e,b=a.currentStyle,c;a.tagName in f.Ac&&a.offsetParent.currentStyle.borderCollapse==="collapse"||this.Cc(function(){c=b.borderWidth+"|"+b.borderStyle+"|"+b.borderColor});return c}),Cc:function(a){var b=this.e.runtimeStyle,c=b.borderWidth,d=b.borderColor;if(c)b.borderWidth="";if(d)b.borderColor="";a=a.call(this);if(c)b.borderWidth=c;if(d)b.borderColor=d;return a}});(function(){f.jb=f.C.ja({va:"border-radius",
48
- Fa:"borderRadius",ka:function(b){var c=null,d,e,g,i,j=false;if(b){e=new f.v(b);var h=function(){for(var k=[],n;(g=e.next())&&g.W();){i=f.n(g.d);n=i.ic();if(n<0)return null;if(n>0)j=true;k.push(i)}return k.length>0&&k.length<5?{tl:k[0],tr:k[1]||k[0],br:k[2]||k[0],bl:k[3]||k[1]||k[0]}:null};if(b=h()){if(g){if(g.k&f.v.pa.oa&&g.d==="/")d=h()}else d=b;if(j&&b&&d)c={x:b,y:d}}}return c}});var a=f.n("0");a={tl:a,tr:a,br:a,bl:a};f.jb.Dc={x:a,y:a}})();f.Ub=f.C.ja({va:"border-image",Fa:"borderImage",fb:{stretch:1,
49
- round:1,repeat:1,space:1},ka:function(a){var b=null,c,d,e,g,i,j,h=0,k=f.v.pa,n=k.ma,l=k.na,q=k.Ra;if(a){c=new f.v(a);b={};for(var s=function(p){return p&&p.k&k.oa&&p.d==="/"},m=function(p){return p&&p.k&n&&p.d==="fill"},r=function(){g=c.la(function(p){return!(p.k&(l|q))});if(m(c.next())&&!b.fill)b.fill=true;else c.D();if(s(c.next())){h++;i=c.la(function(p){return!p.W()&&!(p.k&n&&p.d==="auto")});if(s(c.next())){h++;j=c.la(function(p){return!p.Ca()})}}else c.D()};a=c.next();){d=a.k;e=a.d;if(d&(l|q)&&
50
- !g){c.D();r()}else if(m(a)&&!b.fill){b.fill=true;r()}else if(d&n&&this.fb[e]&&!b.repeat){b.repeat={f:e};if(a=c.next())if(a.k&n&&this.fb[a.d])b.repeat.Ob=a.d;else c.D()}else if(d&k.URL&&!b.src)b.src=e;else return null}if(!b.src||!g||g.length<1||g.length>4||i&&i.length>4||h===1&&i.length<1||j&&j.length>4||h===2&&j.length<1)return null;if(!b.repeat)b.repeat={f:"stretch"};if(!b.repeat.Ob)b.repeat.Ob=b.repeat.f;a=function(p,t){return{t:t(p[0]),r:t(p[1]||p[0]),b:t(p[2]||p[0]),l:t(p[3]||p[1]||p[0])}};b.slice=
51
- a(g,function(p){return f.n(p.k&l?p.d+"px":p.d)});if(i&&i[0])b.I=a(i,function(p){return p.W()?f.n(p.d):p.d});if(j&&j[0])b.Da=a(j,function(p){return p.Ca()?f.n(p.d):p.d})}return b}});f.Ic=f.C.ja({va:"box-shadow",Fa:"boxShadow",ka:function(a){var b,c=f.n,d=f.v.pa,e;if(a){e=new f.v(a);b={Da:[],Bb:[]};for(a=function(){for(var g,i,j,h,k,n;g=e.next();){j=g.d;i=g.k;if(i&d.oa&&j===",")break;else if(g.Ca()&&!k){e.D();k=e.la(function(l){return!l.Ca()})}else if(i&d.B&&!h)h=j;else if(i&d.ma&&j==="inset"&&!n)n=
52
- true;else return false}g=k&&k.length;if(g>1&&g<5){(n?b.Bb:b.Da).push({ee:c(k[0].d),fe:c(k[1].d),blur:c(k[2]?k[2].d:"0"),Ud:c(k[3]?k[3].d:"0"),color:f.ha(h||"currentColor")});return true}return false};a(););}return b&&(b.Bb.length||b.Da.length)?b:null}});f.Uc=f.C.ja({ia:f.C.ua(function(){var a=this.e.currentStyle;return a.visibility+"|"+a.display}),ka:function(){var a=this.e,b=a.runtimeStyle;a=a.currentStyle;var c=b.visibility,d;b.visibility="";d=a.visibility;b.visibility=c;return{be:d!=="hidden",
53
- nd:a.display!=="none"}},h:function(){return false}});f.u={P:function(a){function b(c,d,e,g){this.e=c;this.s=d;this.g=e;this.parent=g}f.p.Eb(b.prototype,f.u,a);return b},Cb:false,O:function(){return false},Ea:f.aa,Lb:function(){this.m();this.h()&&this.U()},ib:function(){this.Cb=true},Mb:function(){this.h()?this.U():this.m()},sb:function(a,b){this.vc(a);for(var c=this.qa||(this.qa=[]),d=a+1,e=c.length,g;d<e;d++)if(g=c[d])break;c[a]=b;this.H().insertBefore(b,g||null)},ya:function(a){var b=this.qa;return b&&
54
- b[a]||null},vc:function(a){var b=this.ya(a),c=this.Ta;if(b&&c){c.removeChild(b);this.qa[a]=null}},za:function(a,b,c,d){var e=this.rb||(this.rb={}),g=e[a];if(!g){g=e[a]=f.p.Za("shape");if(b)g.appendChild(g[b]=f.p.Za(b));if(d){c=this.ya(d);if(!c){this.sb(d,doc.createElement("group"+d));c=this.ya(d)}}c.appendChild(g);a=g.style;a.position="absolute";a.left=a.top=0;a.behavior="url(#default#VML)"}return g},vb:function(a){var b=this.rb,c=b&&b[a];if(c){c.parentNode.removeChild(c);delete b[a]}return!!c},kc:function(a){var b=
55
- this.e,c=this.s.o(),d=c.i,e=c.f,g,i,j,h,k,n;c=a.x.tl.a(b,d);g=a.y.tl.a(b,e);i=a.x.tr.a(b,d);j=a.y.tr.a(b,e);h=a.x.br.a(b,d);k=a.y.br.a(b,e);n=a.x.bl.a(b,d);a=a.y.bl.a(b,e);d=Math.min(d/(c+i),e/(j+k),d/(n+h),e/(g+a));if(d<1){c*=d;g*=d;i*=d;j*=d;h*=d;k*=d;n*=d;a*=d}return{x:{tl:c,tr:i,br:h,bl:n},y:{tl:g,tr:j,br:k,bl:a}}},xa:function(a,b,c){b=b||1;var d,e,g=this.s.o();e=g.i*b;g=g.f*b;var i=this.g.F,j=Math.floor,h=Math.ceil,k=a?a.Jb*b:0,n=a?a.Ib*b:0,l=a?a.tb*b:0;a=a?a.Db*b:0;var q,s,m,r,p;if(c||i.h()){d=
56
- this.kc(c||i.j());c=d.x.tl*b;i=d.y.tl*b;q=d.x.tr*b;s=d.y.tr*b;m=d.x.br*b;r=d.y.br*b;p=d.x.bl*b;b=d.y.bl*b;e="m"+j(a)+","+j(i)+"qy"+j(c)+","+j(k)+"l"+h(e-q)+","+j(k)+"qx"+h(e-n)+","+j(s)+"l"+h(e-n)+","+h(g-r)+"qy"+h(e-m)+","+h(g-l)+"l"+j(p)+","+h(g-l)+"qx"+j(a)+","+h(g-b)+" x e"}else e="m"+j(a)+","+j(k)+"l"+h(e-n)+","+j(k)+"l"+h(e-n)+","+h(g-l)+"l"+j(a)+","+h(g-l)+"xe";return e},H:function(){var a=this.parent.ya(this.M),b;if(!a){a=doc.createElement(this.Ya);b=a.style;b.position="absolute";b.top=b.left=
57
- 0;this.parent.sb(this.M,a)}return a},mc:function(){var a=this.e,b=a.currentStyle,c=a.runtimeStyle,d=a.tagName,e=f.V===6,g;if(e&&(d in f.cc||d==="FIELDSET")||d==="BUTTON"||d==="INPUT"&&a.type in f.Gd){c.borderWidth="";d=this.g.z.wc;for(g=d.length;g--;){e=d[g];c["padding"+e]="";c["padding"+e]=f.n(b["padding"+e]).a(a)+f.n(b["border"+e+"Width"]).a(a)+(f.V!==8&&g%2?1:0)}c.borderWidth=0}else if(e){if(a.childNodes.length!==1||a.firstChild.tagName!=="ie6-mask"){b=doc.createElement("ie6-mask");d=b.style;d.visibility=
58
- "visible";for(d.zoom=1;d=a.firstChild;)b.appendChild(d);a.appendChild(b);c.visibility="hidden"}}else c.borderColor="transparent"},he:function(){},m:function(){this.parent.vc(this.M);delete this.rb;delete this.qa}};f.Rc=f.u.P({h:function(){var a=this.ed;for(var b in a)if(a.hasOwnProperty(b)&&a[b].h())return true;return false},O:function(){return this.g.Pb.G()},ib:function(){if(this.h()){var a=this.jc(),b=a,c;a=a.currentStyle;var d=a.position,e=this.H().style,g=0,i=0;i=this.s.o();if(d==="fixed"&&f.V>
59
- 6){g=i.x;i=i.y;b=d}else{do b=b.offsetParent;while(b&&b.currentStyle.position==="static");if(b){c=b.getBoundingClientRect();b=b.currentStyle;g=i.x-c.left-(parseFloat(b.borderLeftWidth)||0);i=i.y-c.top-(parseFloat(b.borderTopWidth)||0)}else{b=doc.documentElement;g=i.x+b.scrollLeft-b.clientLeft;i=i.y+b.scrollTop-b.clientTop}b="absolute"}e.position=b;e.left=g;e.top=i;e.zIndex=d==="static"?-1:a.zIndex;this.Cb=true}},Mb:f.aa,Nb:function(){var a=this.g.Pb.j();this.H().style.display=a.be&&a.nd?"":"none"},
60
- Lb:function(){this.h()?this.Nb():this.m()},jc:function(){var a=this.e;return a.tagName in f.Ac?a.offsetParent:a},H:function(){var a=this.Ta,b;if(!a){b=this.jc();a=this.Ta=doc.createElement("css3-container");a.style.direction="ltr";this.Nb();b.parentNode.insertBefore(a,b)}return a},ab:f.aa,m:function(){var a=this.Ta,b;if(a&&(b=a.parentNode))b.removeChild(a);delete this.Ta;delete this.qa}});f.Fc=f.u.P({M:2,Ya:"background",O:function(){var a=this.g;return a.w.G()||a.F.G()},h:function(){var a=this.g;
61
- return a.q.h()||a.F.h()||a.w.h()||a.ga.h()&&a.ga.j().Bb},U:function(){var a=this.s.o();if(a.i&&a.f){this.od();this.pd()}},od:function(){var a=this.g.w.j(),b=this.s.o(),c=this.e,d=a&&a.color,e,g;if(d&&d.fa()>0){this.lc();a=this.za("bgColor","fill",this.H(),1);e=b.i;b=b.f;a.stroked=false;a.coordsize=e*2+","+b*2;a.coordorigin="1,1";a.path=this.xa(null,2);g=a.style;g.width=e;g.height=b;a.fill.color=d.T(c);c=d.fa();if(c<1)a.fill.opacity=c}else this.vb("bgColor")},pd:function(){var a=this.g.w.j(),b=this.s.o();
62
- a=a&&a.L;var c,d,e,g,i;if(a){this.lc();d=b.i;e=b.f;for(i=a.length;i--;){b=a[i];c=this.za("bgImage"+i,"fill",this.H(),2);c.stroked=false;c.fill.type="tile";c.fillcolor="none";c.coordsize=d*2+","+e*2;c.coordorigin="1,1";c.path=this.xa(0,2);g=c.style;g.width=d;g.height=e;if(b.N==="linear-gradient")this.bd(c,b);else{c.fill.src=b.Ab;this.Md(c,i)}}}for(i=a?a.length:0;this.vb("bgImage"+i++););},Md:function(a,b){var c=this;f.p.Rb(a.fill.src,function(d){var e=c.e,g=c.s.o(),i=g.i;g=g.f;if(i&&g){var j=a.fill,
63
- h=c.g,k=h.z.j(),n=k&&k.I;k=n?n.t.a(e):0;var l=n?n.r.a(e):0,q=n?n.b.a(e):0;n=n?n.l.a(e):0;h=h.w.j().L[b];e=h.$?h.$.coords(e,i-d.i-n-l,g-d.f-k-q):{x:0,y:0};h=h.bb;q=l=0;var s=i+1,m=g+1,r=f.V===8?0:1;n=Math.round(e.x)+n+0.5;k=Math.round(e.y)+k+0.5;j.position=n/i+","+k/g;if(h&&h!=="repeat"){if(h==="repeat-x"||h==="no-repeat"){l=k+1;m=k+d.f+r}if(h==="repeat-y"||h==="no-repeat"){q=n+1;s=n+d.i+r}a.style.clip="rect("+l+"px,"+s+"px,"+m+"px,"+q+"px)"}}})},bd:function(a,b){var c=this.e,d=this.s.o(),e=d.i,g=
64
- d.f;a=a.fill;d=b.ca;var i=d.length,j=Math.PI,h=f.Na,k=h.tc,n=h.dc;b=h.gc(c,e,g,b);h=b.ra;var l=b.xc,q=b.yc,s=b.Vd,m=b.Wd,r=b.rd,p=b.sd,t=b.kd,v=b.ld;b=b.rc;e=h%90?Math.atan2(t*e/g,v)/j*180:h+90;e+=180;e%=360;r=k(s,m,h,r,p);g=n(s,m,r[0],r[1]);j=[];r=k(l,q,h,s,m);n=n(l,q,r[0],r[1])/g*100;k=[];for(h=0;h<i;h++)k.push(d[h].db?d[h].db.a(c,b):h===0?0:h===i-1?b:null);for(h=1;h<i;h++){if(k[h]===null){l=k[h-1];b=h;do q=k[++b];while(q===null);k[h]=l+(q-l)/(b-h+1)}k[h]=Math.max(k[h],k[h-1])}for(h=0;h<i;h++)j.push(n+
65
- k[h]/g*100+"% "+d[h].color.T(c));a.angle=e;a.type="gradient";a.method="sigma";a.color=d[0].color.T(c);a.color2=d[i-1].color.T(c);if(a.colors)a.colors.value=j.join(",");else a.colors=j.join(",")},lc:function(){var a=this.e.runtimeStyle;a.backgroundImage="url(about:blank)";a.backgroundColor="transparent"},m:function(){f.u.m.call(this);var a=this.e.runtimeStyle;a.backgroundImage=a.backgroundColor=""}});f.Gc=f.u.P({M:4,Ya:"border",O:function(){var a=this.g;return a.z.G()||a.F.G()},h:function(){var a=
66
- this.g;return(a.F.h()||a.w.h())&&!a.q.h()&&a.z.h()},U:function(){var a=this.e,b=this.g.z.j(),c=this.s.o(),d=c.i;c=c.f;var e,g,i,j,h;if(b){this.mc();b=this.wd(2);j=0;for(h=b.length;j<h;j++){i=b[j];e=this.za("borderPiece"+j,i.stroke?"stroke":"fill",this.H());e.coordsize=d*2+","+c*2;e.coordorigin="1,1";e.path=i.path;g=e.style;g.width=d;g.height=c;e.filled=!!i.fill;e.stroked=!!i.stroke;if(i.stroke){e=e.stroke;e.weight=i.Qb+"px";e.color=i.color.T(a);e.dashstyle=i.stroke==="dashed"?"2 2":i.stroke==="dotted"?
67
- "1 1":"solid";e.linestyle=i.stroke==="double"&&i.Qb>2?"ThinThin":"Single"}else e.fill.color=i.fill.T(a)}for(;this.vb("borderPiece"+j++););}},wd:function(a){var b=this.e,c,d,e,g=this.g.z,i=[],j,h,k,n,l=Math.round,q,s,m;if(g.h()){c=g.j();g=c.I;s=c.Yd;m=c.gd;if(c.de&&c.Zd&&c.hd){if(m.t.fa()>0){c=g.t.a(b);k=c/2;i.push({path:this.xa({Jb:k,Ib:k,tb:k,Db:k},a),stroke:s.t,color:m.t,Qb:c})}}else{a=a||1;c=this.s.o();d=c.i;e=c.f;c=l(g.t.a(b));k=l(g.r.a(b));n=l(g.b.a(b));b=l(g.l.a(b));var r={t:c,r:k,b:n,l:b};
68
- b=this.g.F;if(b.h())q=this.kc(b.j());j=Math.floor;h=Math.ceil;var p=function(o,u){return q?q[o][u]:0},t=function(o,u,x,y,z,D){var G=p("x",o),E=p("y",o),B=o.charAt(1)==="r";o=o.charAt(0)==="b";return G>0&&E>0?(D?"al":"ae")+(B?h(d-G):j(G))*a+","+(o?h(e-E):j(E))*a+","+(j(G)-u)*a+","+(j(E)-x)*a+","+y*65535+","+2949075*(z?1:-1):(D?"m":"l")+(B?d-u:u)*a+","+(o?e-x:x)*a},v=function(o,u,x,y){var z=o==="t"?j(p("x","tl"))*a+","+h(u)*a:o==="r"?h(d-u)*a+","+j(p("y","tr"))*a:o==="b"?h(d-p("x","br"))*a+","+j(e-
69
- u)*a:j(u)*a+","+h(e-p("y","bl"))*a;o=o==="t"?h(d-p("x","tr"))*a+","+h(u)*a:o==="r"?h(d-u)*a+","+h(e-p("y","br"))*a:o==="b"?j(p("x","bl"))*a+","+j(e-u)*a:j(u)*a+","+j(p("y","tl"))*a;return x?(y?"m"+o:"")+"l"+z:(y?"m"+z:"")+"l"+o};b=function(o,u,x,y,z,D){var G=o==="l"||o==="r",E=r[o],B,A;if(E>0&&s[o]!=="none"&&m[o].fa()>0){B=r[G?o:u];u=r[G?u:o];A=r[G?o:x];x=r[G?x:o];if(s[o]==="dashed"||s[o]==="dotted"){i.push({path:t(y,B,u,D+45,0,1)+t(y,0,0,D,1,0),fill:m[o]});i.push({path:v(o,E/2,0,1),stroke:s[o],Qb:E,
70
- color:m[o]});i.push({path:t(z,A,x,D,0,1)+t(z,0,0,D-45,1,0),fill:m[o]})}else i.push({path:t(y,B,u,D+45,0,1)+v(o,E,0,0)+t(z,A,x,D,0,0)+(s[o]==="double"&&E>2?t(z,A-j(A/3),x-j(x/3),D-45,1,0)+v(o,h(E/3*2),1,0)+t(y,B-j(B/3),u-j(u/3),D,1,0)+"x "+t(y,j(B/3),j(u/3),D+45,0,1)+v(o,j(E/3),1,0)+t(z,j(A/3),j(x/3),D,0,0):"")+t(z,0,0,D-45,1,0)+v(o,0,1,0)+t(y,0,0,D,1,0),fill:m[o]})}};b("t","l","r","tl","tr",90);b("r","t","b","tr","br",0);b("b","r","l","br","bl",-90);b("l","b","t","bl","tl",-180)}}return i},m:function(){if(this.ec||
71
- !this.g.q.h())this.e.runtimeStyle.borderColor="";f.u.m.call(this)}});f.Tb=f.u.P({M:5,Ld:["t","tr","r","br","b","bl","l","tl","c"],O:function(){return this.g.q.G()},h:function(){return this.g.q.h()},U:function(){this.H();var a=this.g.q.j(),b=this.g.z.j(),c=this.s.o(),d=this.e,e=this.uc;f.p.Rb(a.src,function(g){function i(v,o,u,x,y){v=e[v].style;var z=Math.max;v.width=z(o,0);v.height=z(u,0);v.left=x;v.top=y}function j(v,o,u){for(var x=0,y=v.length;x<y;x++)e[v[x]].imagedata[o]=u}var h=c.i,k=c.f,n=f.n("0"),
72
- l=a.I||(b?b.I:{t:n,r:n,b:n,l:n});n=l.t.a(d);var q=l.r.a(d),s=l.b.a(d);l=l.l.a(d);var m=a.slice,r=m.t.a(d),p=m.r.a(d),t=m.b.a(d);m=m.l.a(d);i("tl",l,n,0,0);i("t",h-l-q,n,l,0);i("tr",q,n,h-q,0);i("r",q,k-n-s,h-q,n);i("br",q,s,h-q,k-s);i("b",h-l-q,s,l,k-s);i("bl",l,s,0,k-s);i("l",l,k-n-s,0,n);i("c",h-l-q,k-n-s,l,n);j(["tl","t","tr"],"cropBottom",(g.f-r)/g.f);j(["tl","l","bl"],"cropRight",(g.i-m)/g.i);j(["bl","b","br"],"cropTop",(g.f-t)/g.f);j(["tr","r","br"],"cropLeft",(g.i-p)/g.i);j(["l","r","c"],"cropTop",
73
- r/g.f);j(["l","r","c"],"cropBottom",t/g.f);j(["t","b","c"],"cropLeft",m/g.i);j(["t","b","c"],"cropRight",p/g.i);e.c.style.display=a.fill?"":"none"},this)},H:function(){var a=this.parent.ya(this.M),b,c,d,e=this.Ld,g=e.length;if(!a){a=doc.createElement("border-image");b=a.style;b.position="absolute";this.uc={};for(d=0;d<g;d++){c=this.uc[e[d]]=f.p.Za("rect");c.appendChild(f.p.Za("imagedata"));b=c.style;b.behavior="url(#default#VML)";b.position="absolute";b.top=b.left=0;c.imagedata.src=this.g.q.j().src;
74
- c.stroked=false;c.filled=false;a.appendChild(c)}this.parent.sb(this.M,a)}return a},Ea:function(){if(this.h()){var a=this.e,b=a.runtimeStyle,c=this.g.q.j().I;b.borderStyle="solid";if(c){b.borderTopWidth=c.t.a(a)+"px";b.borderRightWidth=c.r.a(a)+"px";b.borderBottomWidth=c.b.a(a)+"px";b.borderLeftWidth=c.l.a(a)+"px"}this.mc()}},m:function(){var a=this.e.runtimeStyle;a.borderStyle="";if(this.ec||!this.g.z.h())a.borderColor=a.borderWidth="";f.u.m.call(this)}});f.Hc=f.u.P({M:1,Ya:"outset-box-shadow",O:function(){var a=
75
- this.g;return a.ga.G()||a.F.G()},h:function(){var a=this.g.ga;return a.h()&&a.j().Da[0]},U:function(){function a(B,A,L,N,H,I,F){B=b.za("shadow"+B+A,"fill",d,i-B);A=B.fill;B.coordsize=n*2+","+l*2;B.coordorigin="1,1";B.stroked=false;B.filled=true;A.color=H.T(c);if(I){A.type="gradienttitle";A.color2=A.color;A.opacity=0}B.path=F;p=B.style;p.left=L;p.top=N;p.width=n;p.height=l;return B}var b=this,c=this.e,d=this.H(),e=this.g,g=e.ga.j().Da;e=e.F.j();var i=g.length,j=i,h,k=this.s.o(),n=k.i,l=k.f;k=f.V===
76
- 8?1:0;for(var q=["tl","tr","br","bl"],s,m,r,p,t,v,o,u,x,y,z,D,G,E;j--;){m=g[j];t=m.ee.a(c);v=m.fe.a(c);h=m.Ud.a(c);o=m.blur.a(c);m=m.color;u=-h-o;if(!e&&o)e=f.jb.Dc;u=this.xa({Jb:u,Ib:u,tb:u,Db:u},2,e);if(o){x=(h+o)*2+n;y=(h+o)*2+l;z=o*2/x;D=o*2/y;if(o-h>n/2||o-h>l/2)for(h=4;h--;){s=q[h];G=s.charAt(0)==="b";E=s.charAt(1)==="r";s=a(j,s,t,v,m,o,u);r=s.fill;r.focusposition=(E?1-z:z)+","+(G?1-D:D);r.focussize="0,0";s.style.clip="rect("+((G?y/2:0)+k)+"px,"+(E?x:x/2)+"px,"+(G?y:y/2)+"px,"+((E?x/2:0)+k)+
77
- "px)"}else{s=a(j,"",t,v,m,o,u);r=s.fill;r.focusposition=z+","+D;r.focussize=1-z*2+","+(1-D*2)}}else{s=a(j,"",t,v,m,o,u);t=m.fa();if(t<1)s.fill.opacity=t}}}});f.Pc=f.u.P({M:6,Ya:"imgEl",O:function(){var a=this.g;return this.e.src!==this.Xc||a.F.G()},h:function(){var a=this.g;return a.F.h()||a.w.qc()},U:function(){this.Xc=i;this.Cd();var a=this.za("img","fill",this.H()),b=a.fill,c=this.s.o(),d=c.i;c=c.f;var e=this.g.z.j(),g=e&&e.I;e=this.e;var i=e.src,j=Math.round,h=e.currentStyle,k=f.n;if(!g||f.V<
78
- 7){g=f.n("0");g={t:g,r:g,b:g,l:g}}a.stroked=false;b.type="frame";b.src=i;b.position=(d?0.5/d:0)+","+(c?0.5/c:0);a.coordsize=d*2+","+c*2;a.coordorigin="1,1";a.path=this.xa({Jb:j(g.t.a(e)+k(h.paddingTop).a(e)),Ib:j(g.r.a(e)+k(h.paddingRight).a(e)),tb:j(g.b.a(e)+k(h.paddingBottom).a(e)),Db:j(g.l.a(e)+k(h.paddingLeft).a(e))},2);a=a.style;a.width=d;a.height=c},Cd:function(){this.e.runtimeStyle.filter="alpha(opacity=0)"},m:function(){f.u.m.call(this);this.e.runtimeStyle.filter=""}});f.Oc=f.u.P({ib:f.aa,
79
- Mb:f.aa,Nb:f.aa,Lb:f.aa,Kd:/^,+|,+$/g,Fd:/,+/g,gb:function(a,b){(this.pb||(this.pb=[]))[a]=b||void 0},ab:function(){var a=this.pb,b;if(a&&(b=a.join(",").replace(this.Kd,"").replace(this.Fd,","))!==this.Wc)this.Wc=this.e.runtimeStyle.background=b},m:function(){this.e.runtimeStyle.background="";delete this.pb}});f.Mc=f.u.P({ta:1,O:function(){return this.g.w.G()},h:function(){var a=this.g;return a.w.h()||a.q.h()},U:function(){var a=this.g.w.j(),b,c,d=0,e,g;if(a){b=[];if(c=a.L)for(;e=c[d++];)if(e.N===
80
- "linear-gradient"){g=this.vd(e.Wa);g=(e.Xa||f.Ka.Kc).a(this.e,g.i,g.f,g.i,g.f);b.push("url(data:image/svg+xml,"+escape(this.xd(e,g.i,g.f))+") "+this.dd(e.$)+" / "+g.i+"px "+g.f+"px "+(e.bc||"")+" "+(e.Wa||"")+" "+(e.ub||""))}else b.push(e.Hb);a.color&&b.push(a.color.Y);this.parent.gb(this.ta,b.join(","))}},dd:function(a){return a?a.X.map(function(b){return b.d}).join(" "):"0 0"},vd:function(a){var b=this.e,c=this.s.o(),d=c.i;c=c.f;var e;if(a!=="border-box")if((e=this.g.z.j())&&(e=e.I)){d-=e.l.a(b)+
81
- e.l.a(b);c-=e.t.a(b)+e.b.a(b)}if(a==="content-box"){a=f.n;e=b.currentStyle;d-=a(e.paddingLeft).a(b)+a(e.paddingRight).a(b);c-=a(e.paddingTop).a(b)+a(e.paddingBottom).a(b)}return{i:d,f:c}},xd:function(a,b,c){var d=this.e,e=a.ca,g=e.length,i=f.Na.gc(d,b,c,a);a=i.xc;var j=i.yc,h=i.td,k=i.ud;i=i.rc;var n,l,q,s,m;n=[];for(l=0;l<g;l++)n.push(e[l].db?e[l].db.a(d,i):l===0?0:l===g-1?i:null);for(l=1;l<g;l++)if(n[l]===null){s=n[l-1];q=l;do m=n[++q];while(m===null);n[l]=s+(m-s)/(q-l+1)}b=['<svg width="'+b+'" height="'+
82
- c+'" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="'+a/b*100+'%" y1="'+j/c*100+'%" x2="'+h/b*100+'%" y2="'+k/c*100+'%">'];for(l=0;l<g;l++)b.push('<stop offset="'+n[l]/i+'" stop-color="'+e[l].color.T(d)+'" stop-opacity="'+e[l].color.fa()+'"/>');b.push('</linearGradient></defs><rect width="100%" height="100%" fill="url(#g)"/></svg>');return b.join("")},m:function(){this.parent.gb(this.ta)}});f.Nc=f.u.P({S:"repeat",Sc:"stretch",Qc:"round",ta:0,O:function(){return this.g.q.G()},
83
- h:function(){return this.g.q.h()},U:function(){var a=this,b=a.g.q.j(),c=a.g.z.j(),d=a.s.o(),e=b.repeat,g=e.f,i=e.Ob,j=a.e,h=0;f.p.Rb(b.src,function(k){function n(R,S,U,V,W,T,w,C,K,O){J.push('<pattern patternUnits="userSpaceOnUse" id="pattern'+Q+'" x="'+(g===p?R+U/2-K/2:R)+'" y="'+(i===p?S+V/2-O/2:S)+'" width="'+K+'" height="'+O+'"><svg width="'+K+'" height="'+O+'" viewBox="'+W+" "+T+" "+w+" "+C+'" preserveAspectRatio="none"><image xlink:href="'+r+'" x="0" y="0" width="'+s+'" height="'+m+'" /></svg></pattern>');
84
- P.push('<rect x="'+R+'" y="'+S+'" width="'+U+'" height="'+V+'" fill="url(#pattern'+Q+')" />');Q++}var l=d.i,q=d.f,s=k.i,m=k.f,r=a.Dd(b.src,s,m),p=a.S,t=a.Sc;k=a.Qc;var v=Math.ceil,o=f.n("0"),u=b.I||(c?c.I:{t:o,r:o,b:o,l:o});o=u.t.a(j);var x=u.r.a(j),y=u.b.a(j);u=u.l.a(j);var z=b.slice,D=z.t.a(j),G=z.r.a(j),E=z.b.a(j);z=z.l.a(j);var B=l-u-x,A=q-o-y,L=s-z-G,N=m-D-E,H=g===t?B:L*o/D,I=i===t?A:N*x/G,F=g===t?B:L*y/E;t=i===t?A:N*u/z;var J=[],P=[],Q=0;if(g===k){H-=(H-(B%H||H))/v(B/H);F-=(F-(B%F||F))/v(B/
85
- F)}if(i===k){I-=(I-(A%I||I))/v(A/I);t-=(t-(A%t||t))/v(A/t)}k=['<svg width="'+l+'" height="'+q+'" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">'];n(0,0,u,o,0,0,z,D,u,o);n(u,0,B,o,z,0,L,D,H,o);n(l-x,0,x,o,s-G,0,G,D,x,o);n(0,o,u,A,0,D,z,N,u,t);if(b.fill)n(u,o,B,A,z,D,L,N,H||F||L,t||I||N);n(l-x,o,x,A,s-G,D,G,N,x,I);n(0,q-y,u,y,0,m-E,z,E,u,y);n(u,q-y,B,y,z,m-E,L,E,F,y);n(l-x,q-y,x,y,s-G,m-E,G,E,x,y);k.push("<defs>"+J.join("\n")+"</defs>"+P.join("\n")+"</svg>");a.parent.gb(a.ta,
86
- "url(data:image/svg+xml,"+escape(k.join(""))+") no-repeat border-box border-box");h&&a.parent.ab()},a);h=1},Dd:function(){var a={};return function(b,c,d){var e=a[b],g;if(!e){e=new Image;g=doc.createElement("canvas");e.src=b;g.width=c;g.height=d;g.getContext("2d").drawImage(e,0,0);e=a[b]=g.toDataURL()}return e}}(),Ea:f.Tb.prototype.Ea,m:function(){var a=this.e.runtimeStyle;this.parent.gb(this.ta);a.borderColor=a.borderStyle=a.borderWidth=""}});f.kb=function(){function a(m,r){m.className+=" "+r}function b(m){var r=
87
- s.slice.call(arguments,1),p=r.length;setTimeout(function(){for(;p--;)a(m,r[p])},0)}function c(m){var r=s.slice.call(arguments,1),p=r.length;setTimeout(function(){for(;p--;){var t=r[p];t=q[t]||(q[t]=new RegExp("\\b"+t+"\\b","g"));m.className=m.className.replace(t,"")}},0)}function d(m){function r(){if(!R){var w,C,K=f.Ba,O=m.currentStyle,M=O.getAttribute(g)==="true";T=O.getAttribute(i);T=K>7?T!=="false":T==="true";if(!Q){Q=1;m.runtimeStyle.zoom=1;O=m;for(var ba=1;O=O.previousSibling;)if(O.nodeType===
88
- 1){ba=0;break}ba&&a(m,n)}F.cb();if(M&&(C=F.o())&&(w=doc.documentElement||doc.body)&&(C.y>w.clientHeight||C.x>w.clientWidth||C.y+C.f<0||C.x+C.i<0)){if(!V){V=1;f.mb.ba(r)}}else{R=1;V=Q=0;f.mb.Ha(r);if(K===9){J={w:new f.Sb(m),q:new f.Ub(m),z:new f.Vb(m)};P=[J.w,J.q];I=new f.Oc(m,F,J);w=[new f.Mc(m,F,J,I),new f.Nc(m,F,J,I)]}else{J={w:new f.Sb(m),z:new f.Vb(m),q:new f.Ub(m),F:new f.jb(m),ga:new f.Ic(m),Pb:new f.Uc(m)};P=[J.w,J.z,J.q,J.F,J.ga,J.Pb];I=new f.Rc(m,F,J);w=[new f.Hc(m,F,J,I),new f.Fc(m,F,J,
89
- I),new f.Gc(m,F,J,I),new f.Tb(m,F,J,I)];m.tagName==="IMG"&&w.push(new f.Pc(m,F,J,I));I.ed=w}H=[I].concat(w);if(w=m.currentStyle.getAttribute(f.Q+"watch-ancestors")){w=parseInt(w,10);C=0;for(M=m.parentNode;M&&(w==="NaN"||C++<w);){A(M,"onpropertychange",G);A(M,"onmouseenter",o);A(M,"onmouseleave",u);A(M,"onmousedown",x);if(M.tagName in f.fc){A(M,"onfocus",z);A(M,"onblur",D)}M=M.parentNode}}if(T){f.Oa.ba(t);f.Oa.Qd()}t(1)}if(!S){S=1;K<9&&A(m,"onmove",p);A(m,"onresize",p);A(m,"onpropertychange",v);A(m,
90
- "onmouseenter",o);A(m,"onmouseleave",u);A(m,"onmousedown",x);if(m.tagName in f.fc){A(m,"onfocus",z);A(m,"onblur",D)}f.Qa.ba(p);f.K.ba(L)}F.hb()}}function p(){F&&F.Ad()&&t()}function t(w){if(!W)if(R){var C,K=H.length;E();for(C=0;C<K;C++)H[C].Ea();if(w||F.Nd())for(C=0;C<K;C++)H[C].ib();if(w||F.Sd())for(C=0;C<K;C++)H[C].Mb();I.ab();B()}else Q||r()}function v(){var w,C=H.length,K;w=event;if(!W&&!(w&&w.propertyName in l))if(R){E();for(w=0;w<C;w++)H[w].Ea();for(w=0;w<C;w++){K=H[w];K.Cb||K.ib();K.O()&&K.Lb()}I.ab();
91
- B()}else Q||r()}function o(){b(m,j)}function u(){c(m,j,h)}function x(){b(m,h);f.lb.ba(y)}function y(){c(m,h);f.lb.Ha(y)}function z(){b(m,k)}function D(){c(m,k)}function G(){var w=event.propertyName;if(w==="className"||w==="id")v()}function E(){F.cb();for(var w=P.length;w--;)P[w].cb()}function B(){for(var w=P.length;w--;)P[w].hb();F.hb()}function A(w,C,K){w.attachEvent(C,K);U.push([w,C,K])}function L(){if(S){for(var w=U.length,C;w--;){C=U[w];C[0].detachEvent(C[1],C[2])}f.K.Ha(L);S=0;U=[]}}function N(){if(!W){var w,
92
- C;L();W=1;if(H){w=0;for(C=H.length;w<C;w++){H[w].ec=1;H[w].m()}}T&&f.Oa.Ha(t);f.Qa.Ha(t);H=F=J=P=m=null}}var H,I,F=new da(m),J,P,Q,R,S,U=[],V,W,T;this.Ed=r;this.update=t;this.m=N;this.qd=m}var e={},g=f.Q+"lazy-init",i=f.Q+"poll",j=f.La+"hover",h=f.La+"active",k=f.La+"focus",n=f.La+"first-child",l={background:1,bgColor:1,display:1},q={},s=[];d.yd=function(m){var r=f.p.Aa(m);return e[r]||(e[r]=new d(m))};d.m=function(m){m=f.p.Aa(m);var r=e[m];if(r){r.m();delete e[m]}};d.md=function(){var m=[],r;if(e){for(var p in e)if(e.hasOwnProperty(p)){r=
93
- e[p];m.push(r.qd);r.m()}e={}}return m};return d}();f.supportsVML=f.zc;f.attach=function(a){f.Ba<10&&f.zc&&f.kb.yd(a).Ed()};f.detach=function(a){f.kb.m(a)}};
94
- var $=element;function init(){var a=window.PIE;a&&doc.media!=="print"&&a.attach($)}function cleanup(){var a=window.PIE;if(a){a.detach($);$=0}}$.readyState==="complete"&&init();
95
- </script>
96
- </PUBLIC:COMPONENT>
@@ -1 +0,0 @@
1
- set :erb, layout_engine: :str
@@ -1 +0,0 @@
1
- <h1>Welcome</h1>
@@ -1,9 +0,0 @@
1
- <html>
2
- <head>
3
- <title>My Sample Site</title>
4
- <!-- Comment in layout -->
5
- </head>
6
- <body>
7
- #{yield}
8
- </body>
9
- </html>
File without changes
@@ -1 +0,0 @@
1
- <h1>Welcome</h1>
@@ -1,8 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Custom Layout</title>
4
- </head>
5
- <body>
6
- <%= yield %>
7
- </body>
8
- </html>
@@ -1 +0,0 @@
1
- set :source, 'src'
File without changes
@@ -1 +0,0 @@
1
- <%= yield %>
@@ -1,3 +0,0 @@
1
- data.pages.each do |p|
2
- proxy p.from, p.to
3
- end
@@ -1,6 +0,0 @@
1
- -
2
- from: "/test1.html"
3
- to: "/index.html"
4
- -
5
- from: "/test2.html"
6
- to: "/index.html"
@@ -1 +0,0 @@
1
- <h1>Welcome</h1>
@@ -1,5 +0,0 @@
1
- <html>
2
- <body>
3
- <%= yield %>
4
- </body>
5
- </html>
File without changes
@@ -1 +0,0 @@
1
- <%= image_tag "blank.gif" %>
@@ -1 +0,0 @@
1
- <%= image_tag "blank.gif", alt: "Meaningful alt text" %>
File without changes
@@ -1 +0,0 @@
1
- %h1 Welcome
@@ -1 +0,0 @@
1
- <h1>Welcome</h1>
@@ -1,9 +0,0 @@
1
- <html>
2
- <head>
3
- <title>My Sample Site</title>
4
- <!-- Comment in layout -->
5
- </head>
6
- <body>
7
- <%= yield %>
8
- </body>
9
- </html>
File without changes
@@ -1,7 +0,0 @@
1
- <%= partial 'shared/header' %>
2
-
3
- <div id="main">
4
- <%= yield %>
5
- </div>
6
-
7
- <%= partial 'shared/footer' %>
@@ -1 +0,0 @@
1
- <footer>Str Footer</footer>
@@ -1 +0,0 @@
1
- <header>ERb Header</header>
@@ -1,34 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- proxy "/fake.html", "/real.html", layout: false
3
- proxy "fake2.html", "/real.html", layout: false
4
- proxy "fake3.html", "real.html", layout: false
5
- proxy "/fake4.html", "real.html", layout: false
6
-
7
- ignore "/should_be_ignored.html"
8
- ignore "/should_be_ignored2.html"
9
- proxy "/target_ignore.html", "/should_be_ignored3.html", ignore: true
10
-
11
- ignore "should_be_ignored4.html"
12
- ignore "should_be_ignored5.html"
13
- proxy "target_ignore2.html", "/should_be_ignored6.html", ignore: true
14
- proxy "target_ignore3.html", "should_be_ignored7.html", ignore: true
15
- proxy "/target_ignore4.html", "should_be_ignored8.html", ignore: true
16
-
17
- %w(one two).each do |num|
18
- proxy "/fake/#{num}.html", "/real/index.html", ignore: true, locals: { num: num }
19
- proxy "fake2/#{num}.html", "/real/index.html", ignore: true, locals: { num: num }
20
- proxy "fake3/#{num}.html", "real/index.html", ignore: true, locals: { num: num }
21
- proxy "/fake4/#{num}.html", "real/index.html", ignore: true, locals: { num: num }
22
- end
23
-
24
- proxy "明日がある.html", "/real.html", layout: false
25
-
26
- page "f*/*", locals: { all_glob: "I am all glob" }
27
- page "fake/*", locals: { glob_var: "I am one glob" }
28
- page "fake2/*", locals: { glob_var: "I am two glob" }
29
- page "fake3/*", locals: { glob_var: "I am three glob" }
30
- page "fake4/*", locals: { glob_var: "I am four glob" }
31
-
32
- ["tom", "dick", "harry"].each do |name|
33
- proxy "/about/#{name}.html", "/should_be_ignored9.html", locals: { person_name: name }, ignore: true
34
- end
@@ -1,9 +0,0 @@
1
- ---
2
- layout: false
3
- ---
4
-
5
- I am real: <%= num %>
6
-
7
- Global: <%= glob_var %>
8
-
9
- All: <%= all_glob %>
@@ -1 +0,0 @@
1
- I am real
@@ -1 +0,0 @@
1
- <h1>Ignore me!</h1>
@@ -1 +0,0 @@
1
- <h1>Ignore me! 2</h1>
@@ -1 +0,0 @@
1
- <h1>Ignore me! 3</h1>
@@ -1 +0,0 @@
1
- <h1>Ignore me! 4</h1>
@@ -1 +0,0 @@
1
- <h1>Ignore me! 5</h1>
@@ -1 +0,0 @@
1
- <h1>Ignore me! 6</h1>
@@ -1 +0,0 @@
1
- <h1>Ignore me! 7</h1>
@@ -1 +0,0 @@
1
- <h1>Ignore me! 8</h1>
@@ -1 +0,0 @@
1
- <h1>Ignore me! 9</h1>
@@ -1,5 +0,0 @@
1
- activate :external_pipeline,
2
- name: :ember,
3
- command: "cd test-app/ && ember #{build? ? :build : :serve} --environment #{config[:environment]}",
4
- source: "test-app/dist",
5
- latency: 2
File without changes
@@ -1,3 +0,0 @@
1
- {
2
- "directory": "vendor"
3
- }
@@ -1,17 +0,0 @@
1
- # See http://help.github.com/ignore-files/ for more about ignoring files.
2
-
3
- # compiled output
4
- /dist
5
- /tmp
6
-
7
- # dependencies
8
- /node_modules
9
- /vendor/*
10
-
11
- # misc
12
- /.sass-cache
13
- /connect.lock
14
- /coverage/*
15
- /libpeerconnection.log
16
- npm-debug.log
17
- testem.log
@@ -1,32 +0,0 @@
1
- {
2
- "predef": {
3
- "document": true,
4
- "window": true,
5
- "TestAppENV": true
6
- },
7
- "browser" : true,
8
- "boss" : true,
9
- "curly": true,
10
- "debug": false,
11
- "devel": true,
12
- "eqeqeq": true,
13
- "evil": true,
14
- "forin": false,
15
- "immed": false,
16
- "laxbreak": false,
17
- "newcap": true,
18
- "noarg": true,
19
- "noempty": false,
20
- "nonew": false,
21
- "nomen": false,
22
- "onevar": false,
23
- "plusplus": false,
24
- "regexp": false,
25
- "undef": true,
26
- "sub": true,
27
- "strict": false,
28
- "white": false,
29
- "eqnull": true,
30
- "esnext": true,
31
- "unused": true
32
- }
@@ -1,20 +0,0 @@
1
- /* global require, module */
2
-
3
- var EmberApp = require('ember-cli/lib/broccoli/ember-app');
4
-
5
- var app = new EmberApp();
6
-
7
- // Use `app.import` to add additional libraries to the generated
8
- // output files.
9
- //
10
- // If you need to use different assets in different
11
- // environments, specify an object as the first parameter. That
12
- // object's keys should be the environment name and the values
13
- // should be the asset to use in that environment.
14
- //
15
- // If the library that you are including contains AMD or ES6
16
- // modules that you would like to import into your application
17
- // please specify an object with the list of modules as keys
18
- // along with the exports of each module as its value.
19
-
20
- module.exports = app.toTree();
@@ -1,25 +0,0 @@
1
- # Test-app
2
-
3
- This README outlines the details of collaborating on this Ember application.
4
-
5
- ## Installation
6
-
7
- * `git clone` this repository
8
- * `npm install`
9
- * `bower install`
10
-
11
- ## Running
12
-
13
- * `ember server`
14
- * Visit your app at http://localhost:4200.
15
-
16
- ## Running Tests
17
-
18
- * `ember test`
19
- * `ember test --server`
20
-
21
- ## Building
22
-
23
- * `ember build`
24
-
25
- For more information on using ember-cli, visit [http://iamstef.net/ember-cli/](http://iamstef.net/ember-cli/).
@@ -1,14 +0,0 @@
1
- import Ember from 'ember';
2
- import Resolver from 'ember/resolver';
3
- import loadInitializers from 'ember/load-initializers';
4
-
5
- Ember.MODEL_FACTORY_INJECTIONS = true;
6
-
7
- var App = Ember.Application.extend({
8
- modulePrefix: 'test-app', // TODO: loaded via config
9
- Resolver: Resolver
10
- });
11
-
12
- loadInitializers(App, 'test-app');
13
-
14
- export default App;
File without changes
@@ -1,26 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <title>TestApp</title>
7
- <meta name="description" content="">
8
- <meta name="viewport" content="width=device-width, initial-scale=1">
9
-
10
- {{BASE_TAG}}
11
-
12
- <link rel="stylesheet" href="assets/vendor.css">
13
- <link rel="stylesheet" href="assets/test-app.css">
14
- </head>
15
- <body>
16
- <script>
17
- window.TestAppENV = {{ENV}};
18
- window.EmberENV = window.TestAppENV.EmberENV;
19
- </script>
20
- <script src="assets/vendor.js"></script>
21
- <script src="assets/test-app.js"></script>
22
- <script>
23
- window.TestApp = require('test-app/app')['default'].create(TestAppENV.APP);
24
- </script>
25
- </body>
26
- </html>
File without changes
@@ -1,10 +0,0 @@
1
- import Ember from 'ember';
2
-
3
- var Router = Ember.Router.extend({
4
- location: TestAppENV.locationType
5
- });
6
-
7
- Router.map(function() {
8
- });
9
-
10
- export default Router;
File without changes
File without changes
@@ -1,3 +0,0 @@
1
- html, body {
2
- margin: 20px;
3
- }
@@ -1,3 +0,0 @@
1
- <h2 id='title'>Welcome to Ember.js</h2>
2
-
3
- {{outlet}}
File without changes
@@ -1,16 +0,0 @@
1
- {
2
- "name": "test-app",
3
- "dependencies": {
4
- "handlebars": "~1.3.0",
5
- "jquery": "^1.11.1",
6
- "qunit": "~1.12.0",
7
- "ember-qunit": "~0.1.5",
8
- "ember": "1.5.1",
9
- "ember-resolver": "~0.1.1",
10
- "loader": "stefanpenner/loader.js#1.0.0",
11
- "ember-cli-shims": "stefanpenner/ember-cli-shims#0.0.2",
12
- "ember-load-initializers": "stefanpenner/ember-load-initializers#0.0.2",
13
- "ember-qunit-notifications": "^0.0.3",
14
- "ember-cli-test-loader": "rjackson/ember-cli-test-loader#0.0.2"
15
- }
16
- }