middleman-core 4.5.1 → 4.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +0 -2
  3. data/.yardopts +1 -2
  4. data/Rakefile +1 -1
  5. data/features/builder.feature +4 -4
  6. data/features/content_type.feature +1 -1
  7. data/features/data.feature +5 -0
  8. data/features/front-matter.feature +21 -0
  9. data/features/minify_javascript.feature +38 -39
  10. data/features/preview_changes.feature +11 -0
  11. data/features/sass_in_slim.feature +2 -2
  12. data/features/support/env.rb +8 -0
  13. data/fixtures/data-with-aliases-app/config.rb +3 -0
  14. data/fixtures/data-with-aliases-app/data/pages.yml +9 -0
  15. data/fixtures/data-with-aliases-app/source/index.html.erb +1 -0
  16. data/fixtures/data-with-aliases-app/source/layout.erb +5 -0
  17. data/fixtures/generator-test/config.rb +1 -14
  18. data/fixtures/sinatra-app/config.rb +2 -0
  19. data/lib/middleman-core/application.rb +0 -13
  20. data/lib/middleman-core/builder.rb +3 -3
  21. data/lib/middleman-core/contracts.rb +0 -1
  22. data/lib/middleman-core/core_extensions/collections/lazy_root.rb +1 -1
  23. data/lib/middleman-core/core_extensions/collections/lazy_step.rb +1 -1
  24. data/lib/middleman-core/extensions/minify_javascript.rb +1 -1
  25. data/lib/middleman-core/file_renderer.rb +1 -7
  26. data/lib/middleman-core/preview_server/server_hostname.rb +0 -2
  27. data/lib/middleman-core/preview_server.rb +3 -2
  28. data/lib/middleman-core/rack.rb +6 -6
  29. data/lib/middleman-core/renderers/coffee_script.rb +2 -6
  30. data/lib/middleman-core/renderers/erb.rb +19 -3
  31. data/lib/middleman-core/renderers/haml.rb +1 -3
  32. data/lib/middleman-core/renderers/kramdown.rb +7 -11
  33. data/lib/middleman-core/renderers/less.rb +10 -26
  34. data/lib/middleman-core/renderers/liquid.rb +1 -1
  35. data/lib/middleman-core/renderers/redcarpet.rb +4 -14
  36. data/lib/middleman-core/renderers/sass.rb +3 -10
  37. data/lib/middleman-core/renderers/sass_functions.rb +2 -2
  38. data/lib/middleman-core/renderers/slim.rb +9 -1
  39. data/lib/middleman-core/sources/source_watcher.rb +1 -1
  40. data/lib/middleman-core/step_definitions/commandline_steps.rb +14 -14
  41. data/lib/middleman-core/step_definitions.rb +3 -0
  42. data/lib/middleman-core/template_renderer.rb +2 -2
  43. data/lib/middleman-core/util/data.rb +4 -5
  44. data/lib/middleman-core/util/paths.rb +2 -1
  45. data/lib/middleman-core/util.rb +6 -0
  46. data/lib/middleman-core/version.rb +1 -1
  47. data/lib/middleman-core.rb +0 -2
  48. data/middleman-core.gemspec +16 -15
  49. data/spec/spec_helper.rb +2 -2
  50. metadata +1176 -62
  51. data/.gemtest +0 -0
  52. data/.rspec +0 -1
  53. data/cucumber.yml +0 -2
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.5.1
4
+ version: 4.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Reynolds
8
8
  - Ben Hollis
9
9
  - Karl Freeman
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-10-23 00:00:00.000000000 Z
13
+ date: 2025-06-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -31,9 +31,6 @@ dependencies:
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
33
  - - ">="
34
- - !ruby/object:Gem::Version
35
- version: 1.4.5
36
- - - "<"
37
34
  - !ruby/object:Gem::Version
38
35
  version: '3'
39
36
  type: :runtime
@@ -41,27 +38,38 @@ dependencies:
41
38
  version_requirements: !ruby/object:Gem::Requirement
42
39
  requirements:
43
40
  - - ">="
44
- - !ruby/object:Gem::Version
45
- version: 1.4.5
46
- - - "<"
47
41
  - !ruby/object:Gem::Version
48
42
  version: '3'
43
+ - !ruby/object:Gem::Dependency
44
+ name: rackup
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ type: :runtime
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
49
57
  - !ruby/object:Gem::Dependency
50
58
  name: tilt
51
59
  requirement: !ruby/object:Gem::Requirement
52
60
  requirements:
53
61
  - - "~>"
54
62
  - !ruby/object:Gem::Version
55
- version: 2.0.9
63
+ version: '2.2'
56
64
  type: :runtime
57
65
  prerelease: false
58
66
  version_requirements: !ruby/object:Gem::Requirement
59
67
  requirements:
60
68
  - - "~>"
61
69
  - !ruby/object:Gem::Version
62
- version: 2.0.9
70
+ version: '2.2'
63
71
  - !ruby/object:Gem::Dependency
64
- name: erubis
72
+ name: erubi
65
73
  requirement: !ruby/object:Gem::Requirement
66
74
  requirements:
67
75
  - - ">="
@@ -74,6 +82,48 @@ dependencies:
74
82
  - - ">="
75
83
  - !ruby/object:Gem::Version
76
84
  version: '0'
85
+ - !ruby/object:Gem::Dependency
86
+ name: haml
87
+ requirement: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: 4.0.5
92
+ type: :runtime
93
+ prerelease: false
94
+ version_requirements: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: 4.0.5
99
+ - !ruby/object:Gem::Dependency
100
+ name: coffee-script
101
+ requirement: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - "~>"
104
+ - !ruby/object:Gem::Version
105
+ version: '2.2'
106
+ type: :runtime
107
+ prerelease: false
108
+ version_requirements: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - "~>"
111
+ - !ruby/object:Gem::Version
112
+ version: '2.2'
113
+ - !ruby/object:Gem::Dependency
114
+ name: kramdown
115
+ requirement: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - "~>"
118
+ - !ruby/object:Gem::Version
119
+ version: '2.4'
120
+ type: :runtime
121
+ prerelease: false
122
+ version_requirements: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - "~>"
125
+ - !ruby/object:Gem::Version
126
+ version: '2.4'
77
127
  - !ruby/object:Gem::Dependency
78
128
  name: fast_blank
79
129
  requirement: !ruby/object:Gem::Requirement
@@ -165,9 +215,6 @@ dependencies:
165
215
  - - ">="
166
216
  - !ruby/object:Gem::Version
167
217
  version: '6.1'
168
- - - "<"
169
- - !ruby/object:Gem::Version
170
- version: '7.1'
171
218
  type: :runtime
172
219
  prerelease: false
173
220
  version_requirements: !ruby/object:Gem::Requirement
@@ -175,9 +222,6 @@ dependencies:
175
222
  - - ">="
176
223
  - !ruby/object:Gem::Version
177
224
  version: '6.1'
178
- - - "<"
179
- - !ruby/object:Gem::Version
180
- version: '7.1'
181
225
  - !ruby/object:Gem::Dependency
182
226
  name: padrino-helpers
183
227
  requirement: !ruby/object:Gem::Requirement
@@ -238,16 +282,22 @@ dependencies:
238
282
  name: i18n
239
283
  requirement: !ruby/object:Gem::Requirement
240
284
  requirements:
241
- - - "~>"
285
+ - - ">="
286
+ - !ruby/object:Gem::Version
287
+ version: '1.6'
288
+ - - "<"
242
289
  - !ruby/object:Gem::Version
243
- version: 1.6.0
290
+ version: '1.15'
244
291
  type: :runtime
245
292
  prerelease: false
246
293
  version_requirements: !ruby/object:Gem::Requirement
247
294
  requirements:
248
- - - "~>"
295
+ - - ">="
296
+ - !ruby/object:Gem::Version
297
+ version: '1.6'
298
+ - - "<"
249
299
  - !ruby/object:Gem::Version
250
- version: 1.6.0
300
+ version: '1.15'
251
301
  - !ruby/object:Gem::Dependency
252
302
  name: fastimage
253
303
  requirement: !ruby/object:Gem::Requirement
@@ -280,16 +330,22 @@ dependencies:
280
330
  name: uglifier
281
331
  requirement: !ruby/object:Gem::Requirement
282
332
  requirements:
283
- - - "~>"
333
+ - - ">="
284
334
  - !ruby/object:Gem::Version
285
- version: '3.0'
335
+ version: '3'
336
+ - - "<"
337
+ - !ruby/object:Gem::Version
338
+ version: '5'
286
339
  type: :runtime
287
340
  prerelease: false
288
341
  version_requirements: !ruby/object:Gem::Requirement
289
342
  requirements:
290
- - - "~>"
343
+ - - ">="
291
344
  - !ruby/object:Gem::Version
292
- version: '3.0'
345
+ version: '3'
346
+ - - "<"
347
+ - !ruby/object:Gem::Version
348
+ version: '5'
293
349
  - !ruby/object:Gem::Dependency
294
350
  name: execjs
295
351
  requirement: !ruby/object:Gem::Requirement
@@ -308,36 +364,36 @@ dependencies:
308
364
  name: contracts
309
365
  requirement: !ruby/object:Gem::Requirement
310
366
  requirements:
311
- - - "~>"
312
- - !ruby/object:Gem::Version
313
- version: '0.13'
314
- - - "<"
367
+ - - ">="
315
368
  - !ruby/object:Gem::Version
316
- version: '0.17'
369
+ version: '0'
317
370
  type: :runtime
318
371
  prerelease: false
319
372
  version_requirements: !ruby/object:Gem::Requirement
320
373
  requirements:
321
- - - "~>"
322
- - !ruby/object:Gem::Version
323
- version: '0.13'
324
- - - "<"
374
+ - - ">="
325
375
  - !ruby/object:Gem::Version
326
- version: '0.17'
376
+ version: '0'
327
377
  - !ruby/object:Gem::Dependency
328
378
  name: hashie
329
379
  requirement: !ruby/object:Gem::Requirement
330
380
  requirements:
331
- - - "~>"
381
+ - - ">="
332
382
  - !ruby/object:Gem::Version
333
383
  version: '3.4'
384
+ - - "<"
385
+ - !ruby/object:Gem::Version
386
+ version: '6.0'
334
387
  type: :runtime
335
388
  prerelease: false
336
389
  version_requirements: !ruby/object:Gem::Requirement
337
390
  requirements:
338
- - - "~>"
391
+ - - ">="
339
392
  - !ruby/object:Gem::Version
340
393
  version: '3.4'
394
+ - - "<"
395
+ - !ruby/object:Gem::Version
396
+ version: '6.0'
341
397
  - !ruby/object:Gem::Dependency
342
398
  name: hamster
343
399
  requirement: !ruby/object:Gem::Requirement
@@ -352,23 +408,9 @@ dependencies:
352
408
  - - "~>"
353
409
  - !ruby/object:Gem::Version
354
410
  version: '3.0'
355
- - !ruby/object:Gem::Dependency
356
- name: backports
357
- requirement: !ruby/object:Gem::Requirement
358
- requirements:
359
- - - "~>"
360
- - !ruby/object:Gem::Version
361
- version: '3.6'
362
- type: :runtime
363
- prerelease: false
364
- version_requirements: !ruby/object:Gem::Requirement
365
- requirements:
366
- - - "~>"
367
- - !ruby/object:Gem::Version
368
- version: '3.6'
369
411
  description: A static site generator. Provides dozens of templating languages (Haml,
370
- Sass, Compass, Slim, CoffeeScript, and more). Makes minification, compression, cache
371
- busting, Yaml data (and more) an easy part of your development cycle.
412
+ Sass, Slim, CoffeeScript, and more). Makes minification, compression, cache busting,
413
+ Yaml data (and more) an easy part of your development cycle.
372
414
  email:
373
415
  - me@tdreyno.com
374
416
  - ben@benhollis.net
@@ -377,12 +419,9 @@ executables: []
377
419
  extensions: []
378
420
  extra_rdoc_files: []
379
421
  files:
380
- - ".gemtest"
381
- - ".rspec"
382
422
  - ".simplecov"
383
423
  - ".yardopts"
384
424
  - Rakefile
385
- - cucumber.yml
386
425
  - features/asset_hash.feature
387
426
  - features/asset_host.feature
388
427
  - features/auto_layout.feature
@@ -694,6 +733,10 @@ files:
694
733
  - fixtures/data-app/data/pages.yml
695
734
  - fixtures/data-app/source/index.html.erb
696
735
  - fixtures/data-app/source/layout.erb
736
+ - fixtures/data-with-aliases-app/config.rb
737
+ - fixtures/data-with-aliases-app/data/pages.yml
738
+ - fixtures/data-with-aliases-app/source/index.html.erb
739
+ - fixtures/data-with-aliases-app/source/layout.erb
697
740
  - fixtures/default-alt-tags-app/config.rb
698
741
  - fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb
699
742
  - fixtures/default-alt-tags-app/source/images/blank.gif
@@ -1581,7 +1624,7 @@ homepage: https://middlemanapp.com
1581
1624
  licenses:
1582
1625
  - MIT
1583
1626
  metadata: {}
1584
- post_install_message:
1627
+ post_install_message:
1585
1628
  rdoc_options: []
1586
1629
  require_paths:
1587
1630
  - lib
@@ -1589,15 +1632,1086 @@ required_ruby_version: !ruby/object:Gem::Requirement
1589
1632
  requirements:
1590
1633
  - - ">="
1591
1634
  - !ruby/object:Gem::Version
1592
- version: 2.5.0
1635
+ version: 2.7.0
1593
1636
  required_rubygems_version: !ruby/object:Gem::Requirement
1594
1637
  requirements:
1595
1638
  - - ">="
1596
1639
  - !ruby/object:Gem::Version
1597
1640
  version: '0'
1598
1641
  requirements: []
1599
- rubygems_version: 3.4.10
1600
- signing_key:
1642
+ rubygems_version: 3.5.22
1643
+ signing_key:
1601
1644
  specification_version: 4
1602
1645
  summary: Hand-crafted frontend development
1603
- test_files: []
1646
+ test_files:
1647
+ - features/asset_hash.feature
1648
+ - features/asset_host.feature
1649
+ - features/auto_layout.feature
1650
+ - features/automatic_alt_tags.feature
1651
+ - features/automatic_directory_matcher.feature
1652
+ - features/automatic_image_sizes.feature
1653
+ - features/builder.feature
1654
+ - features/cache_buster.feature
1655
+ - features/capture_html.feature
1656
+ - features/chained_templates.feature
1657
+ - features/clean_build.feature
1658
+ - features/coffee-script.feature
1659
+ - features/collections.feature
1660
+ - features/console.feature
1661
+ - features/content_for.feature
1662
+ - features/content_type.feature
1663
+ - features/custom-source.feature
1664
+ - features/custom_layout_engines.feature
1665
+ - features/custom_layouts.feature
1666
+ - features/data.feature
1667
+ - features/default-layout.feature
1668
+ - features/default_alt_tag.feature
1669
+ - features/directory_index.feature
1670
+ - features/dynamic_pages.feature
1671
+ - features/encoding_option.feature
1672
+ - features/extension_api_deprecations.feature
1673
+ - features/extension_hooks.feature
1674
+ - features/extensionless_text_files.feature
1675
+ - features/feature_params.feature
1676
+ - features/former_padrino_helpers.feature
1677
+ - features/front-matter-neighbor.feature
1678
+ - features/front-matter.feature
1679
+ - features/frontmatter_page_settings.feature
1680
+ - features/gzip.feature
1681
+ - features/helpers_auto_javascript_include_tag.feature
1682
+ - features/helpers_auto_stylesheet_link_tag.feature
1683
+ - features/helpers_content_tag.feature
1684
+ - features/helpers_external.feature
1685
+ - features/helpers_form_tag.feature
1686
+ - features/helpers_link_to.feature
1687
+ - features/helpers_lorem.feature
1688
+ - features/helpers_page_classes.feature
1689
+ - features/helpers_select_tag.feature
1690
+ - features/helpers_url_for.feature
1691
+ - features/i18n_builder.feature
1692
+ - features/i18n_force_locale.feature
1693
+ - features/i18n_link_to.feature
1694
+ - features/i18n_mixed_sources.feature
1695
+ - features/i18n_partials.feature
1696
+ - features/i18n_preview.feature
1697
+ - features/ignore.feature
1698
+ - features/ignore_already_minified.feature
1699
+ - features/image_srcset_paths.feature
1700
+ - features/import_files.feature
1701
+ - features/layouts_dir.feature
1702
+ - features/liquid.feature
1703
+ - features/markdown.feature
1704
+ - features/markdown_kramdown.feature
1705
+ - features/markdown_kramdown_in_haml.feature
1706
+ - features/markdown_kramdown_in_slim.feature
1707
+ - features/markdown_redcarpet.feature
1708
+ - features/markdown_redcarpet_in_haml.feature
1709
+ - features/markdown_redcarpet_in_slim.feature
1710
+ - features/minify_css.feature
1711
+ - features/minify_javascript.feature
1712
+ - features/missing-tilt-lib.feature
1713
+ - features/more-clean_build.feature
1714
+ - features/more-extensionless_text_files.feature
1715
+ - features/more-frontmatter_page_settings.feature
1716
+ - features/more-ignore.feature
1717
+ - features/more-sitemap_traversal.feature
1718
+ - features/more-wildcard_page_helper.feature
1719
+ - features/mount_rack.feature
1720
+ - features/move_files.feature
1721
+ - features/multiple-sources.feature
1722
+ - features/nested_layouts.feature
1723
+ - features/page-id.feature
1724
+ - features/paginate.feature
1725
+ - features/partials.feature
1726
+ - features/preview_changes.feature
1727
+ - features/proxy_pages.feature
1728
+ - features/redirects.feature
1729
+ - features/relative_assets.feature
1730
+ - features/relative_assets_helpers_only.feature
1731
+ - features/sass-assets-paths.feature
1732
+ - features/sass_in_slim.feature
1733
+ - features/sass_partials.feature
1734
+ - features/scss-support.feature
1735
+ - features/sitemap_traversal.feature
1736
+ - features/slim.feature
1737
+ - features/strip_url.feature
1738
+ - features/support/env.rb
1739
+ - features/support/preserve_mime_types.rb
1740
+ - features/template-key-collision.feature
1741
+ - features/tilde_directories.feature
1742
+ - features/unicode_filecontents.feature
1743
+ - features/unicode_filenames.feature
1744
+ - features/v4_extension_callbacks.feature
1745
+ - features/wildcard_page_helper.feature
1746
+ - fixtures/asset-hash-app/config.rb
1747
+ - fixtures/asset-hash-app/lib/middleware.rb
1748
+ - fixtures/asset-hash-app/source/api.json.erb
1749
+ - fixtures/asset-hash-app/source/apple-touch-icon.png
1750
+ - fixtures/asset-hash-app/source/favicon.ico
1751
+ - fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff
1752
+ - fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2
1753
+ - fixtures/asset-hash-app/source/images/100px.gif
1754
+ - fixtures/asset-hash-app/source/images/100px.jpg
1755
+ - fixtures/asset-hash-app/source/images/100px.png
1756
+ - fixtures/asset-hash-app/source/images/200px.jpg
1757
+ - fixtures/asset-hash-app/source/images/300px.jpg
1758
+ - fixtures/asset-hash-app/source/index.html.erb
1759
+ - fixtures/asset-hash-app/source/javascripts/application.js
1760
+ - fixtures/asset-hash-app/source/layout.erb
1761
+ - fixtures/asset-hash-app/source/other.html.erb
1762
+ - fixtures/asset-hash-app/source/partials.html.erb
1763
+ - fixtures/asset-hash-app/source/slim.html.slim
1764
+ - fixtures/asset-hash-app/source/stylesheets/_partial.sass
1765
+ - fixtures/asset-hash-app/source/stylesheets/fragment.css.scss
1766
+ - fixtures/asset-hash-app/source/stylesheets/site.css.scss
1767
+ - fixtures/asset-hash-app/source/stylesheets/uses_fonts.css
1768
+ - fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
1769
+ - fixtures/asset-hash-app/source/subdir/api.json.erb
1770
+ - fixtures/asset-hash-app/source/subdir/index.html.erb
1771
+ - fixtures/asset-hash-host-app/source/images/100px.gif
1772
+ - fixtures/asset-hash-host-app/source/images/100px.jpg
1773
+ - fixtures/asset-hash-host-app/source/images/100px.png
1774
+ - fixtures/asset-hash-host-app/source/index.html.erb
1775
+ - fixtures/asset-hash-host-app/source/layout.erb
1776
+ - fixtures/asset-hash-host-app/source/other.html.erb
1777
+ - fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss
1778
+ - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
1779
+ - fixtures/asset-hash-host-app/source/subdir/index.html.erb
1780
+ - fixtures/asset-hash-minified-app/config.rb
1781
+ - fixtures/asset-hash-minified-app/source/images/100px.jpg
1782
+ - fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js
1783
+ - fixtures/asset-hash-minified-app/source/stylesheets/test.css
1784
+ - fixtures/asset-hash-prefix/config.rb
1785
+ - fixtures/asset-hash-prefix/lib/middleware.rb
1786
+ - fixtures/asset-hash-prefix/source/index.html.erb
1787
+ - fixtures/asset-hash-prefix/source/javascripts/application.js
1788
+ - fixtures/asset-hash-prefix/source/javascripts/application.js.map
1789
+ - fixtures/asset-hash-prefix/source/layout.erb
1790
+ - fixtures/asset-hash-remove-filename/config.rb
1791
+ - fixtures/asset-hash-remove-filename/source/index.html.erb
1792
+ - fixtures/asset-hash-remove-filename/source/javascripts/application.js
1793
+ - fixtures/asset-hash-remove-filename/source/javascripts/application.js.map
1794
+ - fixtures/asset-hash-remove-filename/source/layout.erb
1795
+ - fixtures/asset-hash-source-map/config.rb
1796
+ - fixtures/asset-hash-source-map/lib/middleware.rb
1797
+ - fixtures/asset-hash-source-map/source/index.html.erb
1798
+ - fixtures/asset-hash-source-map/source/javascripts/application.js
1799
+ - fixtures/asset-hash-source-map/source/javascripts/application.js.map
1800
+ - fixtures/asset-hash-source-map/source/layout.erb
1801
+ - fixtures/asset-host-app/config.rb
1802
+ - fixtures/asset-host-app/source/.htaccess
1803
+ - fixtures/asset-host-app/source/asset_host.html.erb
1804
+ - fixtures/asset-host-app/source/images/blank.gif
1805
+ - fixtures/asset-host-app/source/images/blank0.gif
1806
+ - fixtures/asset-host-app/source/images/blank1.gif
1807
+ - fixtures/asset-host-app/source/images/blank10.gif
1808
+ - fixtures/asset-host-app/source/images/blank100.gif
1809
+ - fixtures/asset-host-app/source/images/blank101.gif
1810
+ - fixtures/asset-host-app/source/images/blank1010.gif
1811
+ - fixtures/asset-host-app/source/images/blank102.gif
1812
+ - fixtures/asset-host-app/source/images/blank1020.gif
1813
+ - fixtures/asset-host-app/source/images/blank1021.gif
1814
+ - fixtures/asset-host-app/source/images/blank1022.gif
1815
+ - fixtures/asset-host-app/source/images/blank1023.gif
1816
+ - fixtures/asset-host-app/source/images/blank1024.gif
1817
+ - fixtures/asset-host-app/source/images/blank103.gif
1818
+ - fixtures/asset-host-app/source/images/blank1030.gif
1819
+ - fixtures/asset-host-app/source/images/blank1031.gif
1820
+ - fixtures/asset-host-app/source/images/blank1032.gif
1821
+ - fixtures/asset-host-app/source/images/blank1033.gif
1822
+ - fixtures/asset-host-app/source/images/blank1034.gif
1823
+ - fixtures/asset-host-app/source/images/blank104.gif
1824
+ - fixtures/asset-host-app/source/images/blank1043.gif
1825
+ - fixtures/asset-host-app/source/images/blank1054.gif
1826
+ - fixtures/asset-host-app/source/images/blank2.gif
1827
+ - fixtures/asset-host-app/source/images/blank20.gif
1828
+ - fixtures/asset-host-app/source/images/blank21.gif
1829
+ - fixtures/asset-host-app/source/images/blank22.gif
1830
+ - fixtures/asset-host-app/source/images/blank23.gif
1831
+ - fixtures/asset-host-app/source/images/blank24.gif
1832
+ - fixtures/asset-host-app/source/images/blank3.gif
1833
+ - fixtures/asset-host-app/source/images/blank30.gif
1834
+ - fixtures/asset-host-app/source/images/blank31.gif
1835
+ - fixtures/asset-host-app/source/images/blank32.gif
1836
+ - fixtures/asset-host-app/source/images/blank33.gif
1837
+ - fixtures/asset-host-app/source/images/blank34.gif
1838
+ - fixtures/asset-host-app/source/images/blank4.gif
1839
+ - fixtures/asset-host-app/source/images/blank43.gif
1840
+ - fixtures/asset-host-app/source/images/blank54.gif
1841
+ - fixtures/asset-host-app/source/javascripts/asset_host.js
1842
+ - fixtures/asset-host-app/source/stylesheets/asset_host.css.sass
1843
+ - fixtures/auto-css-app/config.rb
1844
+ - fixtures/auto-css-app/source/auto-css.html.erb
1845
+ - fixtures/auto-css-app/source/auto-css/auto-css.html.erb
1846
+ - fixtures/auto-css-app/source/auto-css/index.html.erb
1847
+ - fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb
1848
+ - fixtures/auto-css-app/source/stylesheets/auto-css.css
1849
+ - fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css
1850
+ - fixtures/auto-css-app/source/stylesheets/auto-css/index.css
1851
+ - fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css
1852
+ - fixtures/auto-js-app/config.rb
1853
+ - fixtures/auto-js-app/source/auto-js.html.erb
1854
+ - fixtures/auto-js-app/source/auto-js/auto-js.html.erb
1855
+ - fixtures/auto-js-app/source/auto-js/index.html.erb
1856
+ - fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb
1857
+ - fixtures/auto-js-app/source/javascripts/auto-js.js
1858
+ - fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js
1859
+ - fixtures/auto-js-app/source/javascripts/auto-js/index.js
1860
+ - fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js
1861
+ - fixtures/auto-js-directory-index-app/config.rb
1862
+ - fixtures/auto-js-directory-index-app/source/auto-js.html.erb
1863
+ - fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js
1864
+ - fixtures/automatic-alt-tags-app/config.rb
1865
+ - fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb
1866
+ - fixtures/automatic-alt-tags-app/source/images/blank.gif
1867
+ - fixtures/automatic-directory-matcher-app/config.rb
1868
+ - fixtures/automatic-directory-matcher-app/source/root-plain.html
1869
+ - fixtures/automatic-directory-matcher-app/source/root.html.erb
1870
+ - fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html
1871
+ - fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb
1872
+ - fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html
1873
+ - fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb
1874
+ - fixtures/automatic-image-size-app/config.rb
1875
+ - fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb
1876
+ - fixtures/automatic-image-size-app/source/images/blank.gif
1877
+ - fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown
1878
+ - fixtures/basic-data-app/config.rb
1879
+ - fixtures/basic-data-app/data/test.yml
1880
+ - fixtures/basic-data-app/data/test2.json
1881
+ - fixtures/basic-data-app/data/test3.toml
1882
+ - fixtures/basic-data-app/source/data.html.erb
1883
+ - fixtures/basic-data-app/source/data3.html.erb
1884
+ - fixtures/basic-data-app/source/data4.html.erb
1885
+ - fixtures/build-with-errors-app/config.rb
1886
+ - fixtures/build-with-errors-app/source/index.html.erb
1887
+ - fixtures/cache-buster-app/config.rb
1888
+ - fixtures/cache-buster-app/source/cache-buster.html.erb
1889
+ - fixtures/cache-buster-app/source/images/blank.gif
1890
+ - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
1891
+ - fixtures/cache-buster-app/source/stylesheets/site.css.sass
1892
+ - fixtures/capture-html-app/config.rb
1893
+ - fixtures/capture-html-app/source/capture_html_erb.html.erb
1894
+ - fixtures/capture-html-app/source/capture_html_haml.html.haml
1895
+ - fixtures/capture-html-app/source/capture_html_slim.html.slim
1896
+ - fixtures/capture-html-app/source/layouts/capture_html.erb
1897
+ - fixtures/chained-app/config.rb
1898
+ - fixtures/chained-app/data/article.yml
1899
+ - fixtures/chained-app/source/index.html.str.erb
1900
+ - fixtures/chained-app/source/test.erb.combobreaker.str.erb
1901
+ - fixtures/clean-app/config-complications.rb
1902
+ - fixtures/clean-app/config-empty.rb
1903
+ - fixtures/clean-app/config-hidden-dir-after.rb
1904
+ - fixtures/clean-app/config-hidden-dir-before.rb
1905
+ - fixtures/clean-app/config.rb
1906
+ - fixtures/clean-app/source/index.html.erb
1907
+ - fixtures/clean-app/source/layout.erb
1908
+ - fixtures/clean-app/source/layouts/custom.erb
1909
+ - fixtures/clean-app/source/real.html
1910
+ - fixtures/clean-app/source/real/index.html.erb
1911
+ - fixtures/clean-app/source/should_be_ignored.html
1912
+ - fixtures/clean-app/source/should_be_ignored2.html
1913
+ - fixtures/clean-app/source/should_be_ignored3.html
1914
+ - fixtures/clean-app/source/static.html
1915
+ - fixtures/clean-dir-app/config.rb
1916
+ - fixtures/clean-dir-app/source/about.html
1917
+ - fixtures/clean-nested-app/config.rb
1918
+ - fixtures/clean-nested-app/source/about.html
1919
+ - fixtures/clean-nested-app/source/nested/nested.html
1920
+ - fixtures/coffeescript-app/config.rb
1921
+ - fixtures/coffeescript-app/source/inline-coffeescript.html.haml
1922
+ - fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee
1923
+ - fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee
1924
+ - fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown
1925
+ - fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown
1926
+ - fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown
1927
+ - fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown
1928
+ - fixtures/content-for-app/config.rb
1929
+ - fixtures/content-for-app/source/content_for_erb.html.erb
1930
+ - fixtures/content-for-app/source/content_for_haml.html.haml
1931
+ - fixtures/content-for-app/source/content_for_slim.html.slim
1932
+ - fixtures/content-for-app/source/layouts/content_for.erb
1933
+ - fixtures/content-type-app/config.rb
1934
+ - fixtures/content-type-app/source/.htaccess
1935
+ - fixtures/content-type-app/source/README
1936
+ - fixtures/content-type-app/source/images/blank.gif
1937
+ - fixtures/content-type-app/source/index.html
1938
+ - fixtures/content-type-app/source/index.php
1939
+ - fixtures/content-type-app/source/javascripts/app.js
1940
+ - fixtures/content-type-app/source/override.html
1941
+ - fixtures/content-type-app/source/stylesheets/site.css
1942
+ - fixtures/csspie/config.rb
1943
+ - fixtures/csspie/source/stylesheets/PIE.htc
1944
+ - fixtures/custom-layout-app/config.rb
1945
+ - fixtures/custom-layout-app/source/index.html.erb
1946
+ - fixtures/custom-layout-app/source/layout.str
1947
+ - fixtures/custom-layout-app2/config.rb
1948
+ - fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb
1949
+ - fixtures/custom-layout-app2/source/custom-layout.html.erb
1950
+ - fixtures/custom-layout-app2/source/layouts/custom.erb
1951
+ - fixtures/custom-src-app/config.rb
1952
+ - fixtures/custom-src-app/src/index.html
1953
+ - fixtures/custom-src-app/src/layouts/layout.html.erb
1954
+ - fixtures/data-app/config.rb
1955
+ - fixtures/data-app/data/pages.yml
1956
+ - fixtures/data-app/source/index.html.erb
1957
+ - fixtures/data-app/source/layout.erb
1958
+ - fixtures/data-with-aliases-app/config.rb
1959
+ - fixtures/data-with-aliases-app/data/pages.yml
1960
+ - fixtures/data-with-aliases-app/source/index.html.erb
1961
+ - fixtures/data-with-aliases-app/source/layout.erb
1962
+ - fixtures/default-alt-tags-app/config.rb
1963
+ - fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb
1964
+ - fixtures/default-alt-tags-app/source/images/blank.gif
1965
+ - fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb
1966
+ - fixtures/different-engine-layout/config.rb
1967
+ - fixtures/different-engine-layout/source/index.haml
1968
+ - fixtures/different-engine-layout/source/index.html.str
1969
+ - fixtures/different-engine-layout/source/layout.erb
1970
+ - fixtures/different-engine-partial/config.rb
1971
+ - fixtures/different-engine-partial/source/index.html.erb
1972
+ - fixtures/different-engine-partial/source/layouts/layout.erb
1973
+ - fixtures/different-engine-partial/source/shared/_footer.str
1974
+ - fixtures/different-engine-partial/source/shared/_header.erb
1975
+ - fixtures/dynamic-pages-app/config.rb
1976
+ - fixtures/dynamic-pages-app/source/real.html
1977
+ - fixtures/dynamic-pages-app/source/real/index.html.erb
1978
+ - fixtures/dynamic-pages-app/source/should_be_ignored.html
1979
+ - fixtures/dynamic-pages-app/source/should_be_ignored2.html
1980
+ - fixtures/dynamic-pages-app/source/should_be_ignored3.html
1981
+ - fixtures/dynamic-pages-app/source/should_be_ignored4.html
1982
+ - fixtures/dynamic-pages-app/source/should_be_ignored5.html
1983
+ - fixtures/dynamic-pages-app/source/should_be_ignored6.html
1984
+ - fixtures/dynamic-pages-app/source/should_be_ignored7.html
1985
+ - fixtures/dynamic-pages-app/source/should_be_ignored8.html
1986
+ - fixtures/dynamic-pages-app/source/should_be_ignored9.html
1987
+ - fixtures/ember-cli-app/config.rb
1988
+ - fixtures/ember-cli-app/source/javascripts/file.js
1989
+ - fixtures/ember-cli-app/test-app/.bowerrc
1990
+ - fixtures/ember-cli-app/test-app/.gitignore
1991
+ - fixtures/ember-cli-app/test-app/.jshintrc
1992
+ - fixtures/ember-cli-app/test-app/Brocfile.js
1993
+ - fixtures/ember-cli-app/test-app/README.md
1994
+ - fixtures/ember-cli-app/test-app/app/app.js
1995
+ - fixtures/ember-cli-app/test-app/app/components/.gitkeep
1996
+ - fixtures/ember-cli-app/test-app/app/controllers/.gitkeep
1997
+ - fixtures/ember-cli-app/test-app/app/helpers/.gitkeep
1998
+ - fixtures/ember-cli-app/test-app/app/index.html
1999
+ - fixtures/ember-cli-app/test-app/app/models/.gitkeep
2000
+ - fixtures/ember-cli-app/test-app/app/router.js
2001
+ - fixtures/ember-cli-app/test-app/app/routes/.gitkeep
2002
+ - fixtures/ember-cli-app/test-app/app/styles/.gitkeep
2003
+ - fixtures/ember-cli-app/test-app/app/styles/app.css
2004
+ - fixtures/ember-cli-app/test-app/app/templates/.gitkeep
2005
+ - fixtures/ember-cli-app/test-app/app/templates/application.hbs
2006
+ - fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep
2007
+ - fixtures/ember-cli-app/test-app/app/views/.gitkeep
2008
+ - fixtures/ember-cli-app/test-app/bower.json
2009
+ - fixtures/ember-cli-app/test-app/config/environment.js
2010
+ - fixtures/ember-cli-app/test-app/package.json
2011
+ - fixtures/ember-cli-app/test-app/public/.gitkeep
2012
+ - fixtures/ember-cli-app/test-app/testem.json
2013
+ - fixtures/ember-cli-app/test-app/tests/.jshintrc
2014
+ - fixtures/ember-cli-app/test-app/tests/helpers/resolver.js
2015
+ - fixtures/ember-cli-app/test-app/tests/helpers/start-app.js
2016
+ - fixtures/ember-cli-app/test-app/tests/index.html
2017
+ - fixtures/ember-cli-app/test-app/tests/test-helper.js
2018
+ - fixtures/ember-cli-app/test-app/tests/unit/.gitkeep
2019
+ - fixtures/empty-app/not-config.rb
2020
+ - fixtures/engine-matching-layout/config.rb
2021
+ - fixtures/engine-matching-layout/source/index.html.erb
2022
+ - fixtures/engine-matching-layout/source/layout.erb
2023
+ - fixtures/env-app/config.rb
2024
+ - fixtures/env-app/environments/development.rb
2025
+ - fixtures/env-app/environments/production.rb
2026
+ - fixtures/env-app/source/index.html.erb
2027
+ - fixtures/env-app/source/stylesheets/site.css.scss
2028
+ - fixtures/extension-api-deprecations-app/config.rb
2029
+ - fixtures/extension-api-deprecations-app/source/index.html.erb
2030
+ - fixtures/extension-api-deprecations-app/source/layouts/layout.erb
2031
+ - fixtures/extension-hooks-app/config.rb
2032
+ - fixtures/extension-hooks-app/source/index.html.erb
2033
+ - fixtures/extensionless-text-files-app/config.rb
2034
+ - fixtures/extensionless-text-files-app/source/CNAME
2035
+ - fixtures/extensionless-text-files-app/source/LICENSE
2036
+ - fixtures/extensionless-text-files-app/source/README
2037
+ - fixtures/extensionless-text-files-app/source/index.html
2038
+ - fixtures/external-helpers/config.rb
2039
+ - fixtures/external-helpers/helpers/derp.rb
2040
+ - fixtures/external-helpers/helpers/four_helpers.rb
2041
+ - fixtures/external-helpers/helpers/one_helper.rb
2042
+ - fixtures/external-helpers/helpers/yet_another_thingy.rb
2043
+ - fixtures/external-helpers/lib/hello_helper.rb
2044
+ - fixtures/external-helpers/source/automatic.html.erb
2045
+ - fixtures/external-helpers/source/index.html.erb
2046
+ - fixtures/external-pipeline-error/config.rb
2047
+ - fixtures/external-pipeline-error/source/javascripts/file.js
2048
+ - fixtures/feature-params-app/config.rb
2049
+ - fixtures/feature-params-app/source/index.html.erb
2050
+ - fixtures/fonts-app/config.rb
2051
+ - fixtures/fonts-app/source/fonts/StMarie-Thin.otf
2052
+ - fixtures/fonts-app/source/fonts/blank/blank.otf
2053
+ - fixtures/fonts-app/source/stylesheets/fonts.css.scss
2054
+ - fixtures/frontmatter-app/config.rb
2055
+ - fixtures/frontmatter-app/source/front-matter-2.php.erb
2056
+ - fixtures/frontmatter-app/source/front-matter-change.html.erb
2057
+ - fixtures/frontmatter-app/source/front-matter-encoding.html.erb
2058
+ - fixtures/frontmatter-app/source/front-matter-haml.html.haml
2059
+ - fixtures/frontmatter-app/source/front-matter-line-2.html.erb
2060
+ - fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb
2061
+ - fixtures/frontmatter-app/source/raw-front-matter-toml.html
2062
+ - fixtures/frontmatter-app/source/raw-front-matter.html
2063
+ - fixtures/frontmatter-app/source/raw-front-matter.php
2064
+ - fixtures/frontmatter-neighbor-app/config.rb
2065
+ - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb
2066
+ - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter
2067
+ - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb
2068
+ - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter
2069
+ - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb
2070
+ - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter
2071
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html
2072
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter
2073
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html
2074
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter
2075
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php
2076
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter
2077
+ - fixtures/frontmatter-settings-app/config.rb
2078
+ - fixtures/frontmatter-settings-app/source/alternate_layout.html.erb
2079
+ - fixtures/frontmatter-settings-app/source/ignored.html.erb
2080
+ - fixtures/frontmatter-settings-app/source/layouts/alternate.erb
2081
+ - fixtures/frontmatter-settings-app/source/layouts/override.erb
2082
+ - fixtures/frontmatter-settings-app/source/override_layout.html.erb
2083
+ - fixtures/frontmatter-settings-app/source/page_mentioned.html.erb
2084
+ - fixtures/frontmatter-settings-neighbor-app/config.rb
2085
+ - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb
2086
+ - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter
2087
+ - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb
2088
+ - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter
2089
+ - fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb
2090
+ - fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb
2091
+ - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb
2092
+ - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter
2093
+ - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb
2094
+ - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter
2095
+ - fixtures/generator-test/config.rb
2096
+ - fixtures/generator-test/source/index.html.erb
2097
+ - fixtures/glob-app/config.rb
2098
+ - fixtures/glob-app/source/index.html.erb
2099
+ - fixtures/glob-app/source/stylesheets/site.css.str
2100
+ - fixtures/gzip-app/config.rb
2101
+ - fixtures/gzip-app/source/index.html
2102
+ - fixtures/gzip-app/source/javascripts/test.js
2103
+ - fixtures/gzip-app/source/stylesheets/test.css
2104
+ - fixtures/i-8859-1-app/config.rb
2105
+ - fixtures/i-8859-1-app/source/index.html.erb
2106
+ - fixtures/i18n-alt-root-app/locales/en.yml
2107
+ - fixtures/i18n-alt-root-app/locales/es.yml
2108
+ - fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb
2109
+ - fixtures/i18n-alt-root-app/source/lang_data/index.html.erb
2110
+ - fixtures/i18n-alt-root-app/source/layout.erb
2111
+ - fixtures/i18n-default-app/locales/en.yml
2112
+ - fixtures/i18n-default-app/locales/es.yml
2113
+ - fixtures/i18n-default-app/source/localizable/index.html.erb
2114
+ - fixtures/i18n-force-locale/config.rb
2115
+ - fixtures/i18n-force-locale/locales/en.yml
2116
+ - fixtures/i18n-force-locale/locales/es.yml
2117
+ - fixtures/i18n-force-locale/locales/fr.yml
2118
+ - fixtures/i18n-force-locale/source/index.html.haml
2119
+ - fixtures/i18n-mixed-sources/config.rb
2120
+ - fixtures/i18n-mixed-sources/locales/en.yml
2121
+ - fixtures/i18n-mixed-sources/locales/es.yml
2122
+ - fixtures/i18n-mixed-sources/source/a/sub.html.erb
2123
+ - fixtures/i18n-mixed-sources/source/b/index.html.erb
2124
+ - fixtures/i18n-mixed-sources/source/index.html.erb
2125
+ - fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb
2126
+ - fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb
2127
+ - fixtures/i18n-mixed-sources/source/localizable/index.html.erb
2128
+ - fixtures/i18n-nested-app/locales/en.yml
2129
+ - fixtures/i18n-nested-app/locales/en/more.yml
2130
+ - fixtures/i18n-nested-app/locales/es.yml
2131
+ - fixtures/i18n-nested-app/locales/es/mucho.yml
2132
+ - fixtures/i18n-nested-app/source/localizable/index.html.erb
2133
+ - fixtures/i18n-test-app/data/defaults_en.yml
2134
+ - fixtures/i18n-test-app/data/defaults_es.yml
2135
+ - fixtures/i18n-test-app/data/en_defaults.yml
2136
+ - fixtures/i18n-test-app/locales/en.yml
2137
+ - fixtures/i18n-test-app/locales/es.yml
2138
+ - fixtures/i18n-test-app/source/CNAME
2139
+ - fixtures/i18n-test-app/source/_country.en.erb
2140
+ - fixtures/i18n-test-app/source/_country.es.erb
2141
+ - fixtures/i18n-test-app/source/_site.erb
2142
+ - fixtures/i18n-test-app/source/images/president.en.svg
2143
+ - fixtures/i18n-test-app/source/images/president.es.svg
2144
+ - fixtures/i18n-test-app/source/layouts/layout.erb
2145
+ - fixtures/i18n-test-app/source/localizable/_state.en.erb
2146
+ - fixtures/i18n-test-app/source/localizable/_state.es.erb
2147
+ - fixtures/i18n-test-app/source/localizable/fallback.html.erb
2148
+ - fixtures/i18n-test-app/source/localizable/hello.html.erb
2149
+ - fixtures/i18n-test-app/source/localizable/images/flag.en.svg
2150
+ - fixtures/i18n-test-app/source/localizable/images/flag.es.svg
2151
+ - fixtures/i18n-test-app/source/localizable/index.html.erb
2152
+ - fixtures/i18n-test-app/source/localizable/morning.en.html.erb
2153
+ - fixtures/i18n-test-app/source/localizable/morning.es.html.erb
2154
+ - fixtures/i18n-test-app/source/localizable/one.en.html.md
2155
+ - fixtures/i18n-test-app/source/localizable/one.es.html.md
2156
+ - fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb
2157
+ - fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb
2158
+ - fixtures/i18n-test-app/source/localizable/partials/index.html.erb
2159
+ - fixtures/i18n-test-app/source/password.txt
2160
+ - fixtures/i18n-test-app/source/stylesheets/site.css
2161
+ - fixtures/ignore-app/source/about.html.erb
2162
+ - fixtures/ignore-app/source/images/icon/messages.png
2163
+ - fixtures/ignore-app/source/images/pic.png
2164
+ - fixtures/ignore-app/source/images/portrait.jpg
2165
+ - fixtures/ignore-app/source/index.html.erb
2166
+ - fixtures/ignore-app/source/plain.html
2167
+ - fixtures/ignore-app/source/reports/another.html
2168
+ - fixtures/ignore-app/source/reports/index.html
2169
+ - fixtures/image-srcset-paths-app/image-srcset-paths.html.erb
2170
+ - fixtures/image-srcset-paths-app/images/blank.gif
2171
+ - fixtures/import-app/bower.json
2172
+ - fixtures/import-app/bower_components/jquery/.bower.json
2173
+ - fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt
2174
+ - fixtures/import-app/bower_components/jquery/bower.json
2175
+ - fixtures/import-app/bower_components/jquery/dist/jquery.js
2176
+ - fixtures/import-app/bower_components/jquery/dist/jquery.min.js
2177
+ - fixtures/import-app/bower_components/jquery/dist/jquery.min.map
2178
+ - fixtures/import-app/bower_components/jquery/src/ajax.js
2179
+ - fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js
2180
+ - fixtures/import-app/bower_components/jquery/src/ajax/load.js
2181
+ - fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js
2182
+ - fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js
2183
+ - fixtures/import-app/bower_components/jquery/src/ajax/script.js
2184
+ - fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js
2185
+ - fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js
2186
+ - fixtures/import-app/bower_components/jquery/src/ajax/xhr.js
2187
+ - fixtures/import-app/bower_components/jquery/src/attributes.js
2188
+ - fixtures/import-app/bower_components/jquery/src/attributes/attr.js
2189
+ - fixtures/import-app/bower_components/jquery/src/attributes/classes.js
2190
+ - fixtures/import-app/bower_components/jquery/src/attributes/prop.js
2191
+ - fixtures/import-app/bower_components/jquery/src/attributes/support.js
2192
+ - fixtures/import-app/bower_components/jquery/src/attributes/val.js
2193
+ - fixtures/import-app/bower_components/jquery/src/callbacks.js
2194
+ - fixtures/import-app/bower_components/jquery/src/core.js
2195
+ - fixtures/import-app/bower_components/jquery/src/core/access.js
2196
+ - fixtures/import-app/bower_components/jquery/src/core/init.js
2197
+ - fixtures/import-app/bower_components/jquery/src/core/parseHTML.js
2198
+ - fixtures/import-app/bower_components/jquery/src/core/ready.js
2199
+ - fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js
2200
+ - fixtures/import-app/bower_components/jquery/src/css.js
2201
+ - fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js
2202
+ - fixtures/import-app/bower_components/jquery/src/css/curCSS.js
2203
+ - fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js
2204
+ - fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js
2205
+ - fixtures/import-app/bower_components/jquery/src/css/support.js
2206
+ - fixtures/import-app/bower_components/jquery/src/css/swap.js
2207
+ - fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js
2208
+ - fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js
2209
+ - fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js
2210
+ - fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js
2211
+ - fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js
2212
+ - fixtures/import-app/bower_components/jquery/src/data.js
2213
+ - fixtures/import-app/bower_components/jquery/src/data/Data.js
2214
+ - fixtures/import-app/bower_components/jquery/src/data/accepts.js
2215
+ - fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js
2216
+ - fixtures/import-app/bower_components/jquery/src/data/var/data_user.js
2217
+ - fixtures/import-app/bower_components/jquery/src/deferred.js
2218
+ - fixtures/import-app/bower_components/jquery/src/deprecated.js
2219
+ - fixtures/import-app/bower_components/jquery/src/dimensions.js
2220
+ - fixtures/import-app/bower_components/jquery/src/effects.js
2221
+ - fixtures/import-app/bower_components/jquery/src/effects/Tween.js
2222
+ - fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js
2223
+ - fixtures/import-app/bower_components/jquery/src/event.js
2224
+ - fixtures/import-app/bower_components/jquery/src/event/ajax.js
2225
+ - fixtures/import-app/bower_components/jquery/src/event/alias.js
2226
+ - fixtures/import-app/bower_components/jquery/src/event/support.js
2227
+ - fixtures/import-app/bower_components/jquery/src/exports/amd.js
2228
+ - fixtures/import-app/bower_components/jquery/src/exports/global.js
2229
+ - fixtures/import-app/bower_components/jquery/src/intro.js
2230
+ - fixtures/import-app/bower_components/jquery/src/jquery.js
2231
+ - fixtures/import-app/bower_components/jquery/src/manipulation.js
2232
+ - fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js
2233
+ - fixtures/import-app/bower_components/jquery/src/manipulation/support.js
2234
+ - fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js
2235
+ - fixtures/import-app/bower_components/jquery/src/offset.js
2236
+ - fixtures/import-app/bower_components/jquery/src/outro.js
2237
+ - fixtures/import-app/bower_components/jquery/src/queue.js
2238
+ - fixtures/import-app/bower_components/jquery/src/queue/delay.js
2239
+ - fixtures/import-app/bower_components/jquery/src/selector-native.js
2240
+ - fixtures/import-app/bower_components/jquery/src/selector-sizzle.js
2241
+ - fixtures/import-app/bower_components/jquery/src/selector.js
2242
+ - fixtures/import-app/bower_components/jquery/src/serialize.js
2243
+ - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js
2244
+ - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js
2245
+ - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map
2246
+ - fixtures/import-app/bower_components/jquery/src/traversing.js
2247
+ - fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js
2248
+ - fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js
2249
+ - fixtures/import-app/bower_components/jquery/src/var/arr.js
2250
+ - fixtures/import-app/bower_components/jquery/src/var/class2type.js
2251
+ - fixtures/import-app/bower_components/jquery/src/var/concat.js
2252
+ - fixtures/import-app/bower_components/jquery/src/var/hasOwn.js
2253
+ - fixtures/import-app/bower_components/jquery/src/var/indexOf.js
2254
+ - fixtures/import-app/bower_components/jquery/src/var/pnum.js
2255
+ - fixtures/import-app/bower_components/jquery/src/var/push.js
2256
+ - fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js
2257
+ - fixtures/import-app/bower_components/jquery/src/var/slice.js
2258
+ - fixtures/import-app/bower_components/jquery/src/var/strundefined.js
2259
+ - fixtures/import-app/bower_components/jquery/src/var/support.js
2260
+ - fixtures/import-app/bower_components/jquery/src/var/toString.js
2261
+ - fixtures/import-app/bower_components/jquery/src/wrap.js
2262
+ - fixtures/import-app/config.rb
2263
+ - fixtures/import-app/source/test.html
2264
+ - fixtures/import-app/static.html
2265
+ - fixtures/indexable-app/config.rb
2266
+ - fixtures/indexable-app/source/.htaccess
2267
+ - fixtures/indexable-app/source/.htpasswd
2268
+ - fixtures/indexable-app/source/.nojekyll
2269
+ - fixtures/indexable-app/source/a_folder/needs_index.html
2270
+ - fixtures/indexable-app/source/evil spaces.html
2271
+ - fixtures/indexable-app/source/leave_me_alone.html
2272
+ - fixtures/indexable-app/source/needs_index.html
2273
+ - fixtures/indexable-app/source/regex_leave_me_alone2.html
2274
+ - fixtures/indexable-app/source/regular/index.html
2275
+ - fixtures/indexable-app/source/wildcard_leave_me_alone.html
2276
+ - fixtures/javascript-app/config.rb
2277
+ - fixtures/javascript-app/source/index.html
2278
+ - fixtures/large-build-app/config.rb
2279
+ - fixtures/large-build-app/source/.htaccess
2280
+ - fixtures/large-build-app/source/.htpasswd
2281
+ - fixtures/large-build-app/source/_partial.erb
2282
+ - fixtures/large-build-app/source/feed.xml.builder
2283
+ - fixtures/large-build-app/source/images/Child folder/regular_file(example).txt
2284
+ - fixtures/large-build-app/source/images/Read me (example).txt
2285
+ - fixtures/large-build-app/source/images/blank.gif
2286
+ - fixtures/large-build-app/source/index.html.erb
2287
+ - fixtures/large-build-app/source/layout.erb
2288
+ - fixtures/large-build-app/source/layouts/content_for.erb
2289
+ - fixtures/large-build-app/source/layouts/custom.erb
2290
+ - fixtures/large-build-app/source/link_test.html.erb
2291
+ - fixtures/large-build-app/source/other_layout.erb
2292
+ - fixtures/large-build-app/source/services/index.html.erb
2293
+ - fixtures/large-build-app/source/spaces in file.html.erb
2294
+ - fixtures/large-build-app/source/static.html
2295
+ - fixtures/large-build-app/source/stylesheets/static.css
2296
+ - fixtures/layouts-dir-app/source/ambiguous.html.erb
2297
+ - fixtures/layouts-dir-app/source/index.html.erb
2298
+ - fixtures/layouts-dir-app/source/layouts/layout.erb
2299
+ - fixtures/layouts-dir-app/source/layouts/other.erb
2300
+ - fixtures/layouts-dir-app/source/layouts2/layout.erb
2301
+ - fixtures/layouts-dir-app/source/nested/layouts2/layout.erb
2302
+ - fixtures/layouts-dir-app/source/other.erb
2303
+ - fixtures/link-to-app/config.rb
2304
+ - fixtures/link-to-app/source/link_to_erb.html.erb
2305
+ - fixtures/link-to-app/source/link_to_haml.html.haml
2306
+ - fixtures/link-to-app/source/link_to_slim.html.slim
2307
+ - fixtures/liquid-app/config.rb
2308
+ - fixtures/liquid-app/data/test.yml
2309
+ - fixtures/liquid-app/data/test2.json
2310
+ - fixtures/liquid-app/source/_liquid_partial.liquid
2311
+ - fixtures/liquid-app/source/data2.html.liquid
2312
+ - fixtures/liquid-app/source/liquid_master.html.liquid
2313
+ - fixtures/lorem-app/config.rb
2314
+ - fixtures/lorem-app/source/lorem.html.erb
2315
+ - fixtures/manual-layout-missing/config.rb
2316
+ - fixtures/manual-layout-missing/source/index.html.erb
2317
+ - fixtures/manual-layout-override/config.rb
2318
+ - fixtures/manual-layout-override/source/index.html.erb
2319
+ - fixtures/manual-layout-override/source/layouts/another.erb
2320
+ - fixtures/manual-layout-override/source/layouts/custom.erb
2321
+ - fixtures/manual-layout/config.rb
2322
+ - fixtures/manual-layout/source/index.html.erb
2323
+ - fixtures/manual-layout/source/layouts/custom.erb
2324
+ - fixtures/markdown-app/config.rb
2325
+ - fixtures/markdown-app/source/autolink.html.markdown
2326
+ - fixtures/markdown-app/source/fenced_code_blocks.html.markdown
2327
+ - fixtures/markdown-app/source/filter_html.html.markdown
2328
+ - fixtures/markdown-app/source/footnote.html.markdown
2329
+ - fixtures/markdown-app/source/hard_wrap.html.markdown
2330
+ - fixtures/markdown-app/source/highlighted.html.markdown
2331
+ - fixtures/markdown-app/source/images/blank.gif
2332
+ - fixtures/markdown-app/source/img.html.markdown
2333
+ - fixtures/markdown-app/source/indented_code_blocks.html.markdown
2334
+ - fixtures/markdown-app/source/index.html.markdown
2335
+ - fixtures/markdown-app/source/lax_spacing.html.markdown
2336
+ - fixtures/markdown-app/source/link.html.markdown
2337
+ - fixtures/markdown-app/source/mailto.html.markdown
2338
+ - fixtures/markdown-app/source/no_intra_emphasis.html.markdown
2339
+ - fixtures/markdown-app/source/prettify.html.markdown
2340
+ - fixtures/markdown-app/source/quote.html.markdown
2341
+ - fixtures/markdown-app/source/safe_links.html.markdown
2342
+ - fixtures/markdown-app/source/smarty_pants.html.markdown
2343
+ - fixtures/markdown-app/source/space_after_headers.html.markdown
2344
+ - fixtures/markdown-app/source/strikethrough.html.markdown
2345
+ - fixtures/markdown-app/source/superscript.html.markdown
2346
+ - fixtures/markdown-app/source/tables.html.markdown
2347
+ - fixtures/markdown-app/source/underline.html.markdown
2348
+ - fixtures/markdown-app/source/with_toc_data.html.markdown
2349
+ - fixtures/markdown-frontmatter-options-app/config.rb
2350
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown
2351
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown
2352
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown
2353
+ - fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown
2354
+ - fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown
2355
+ - fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown
2356
+ - fixtures/markdown-in-haml-app/config.rb
2357
+ - fixtures/markdown-in-haml-app/source/images/blank.gif
2358
+ - fixtures/markdown-in-haml-app/source/link_target.html.markdown
2359
+ - fixtures/markdown-in-slim-app/config.rb
2360
+ - fixtures/markdown-in-slim-app/source/images/blank.gif
2361
+ - fixtures/markdown-in-slim-app/source/link_target.html.markdown
2362
+ - fixtures/minify-css-app/source/inline-css.html.haml
2363
+ - fixtures/minify-css-app/source/inline-css.php
2364
+ - fixtures/minify-css-app/source/more-css/site.css
2365
+ - fixtures/minify-css-app/source/stylesheets/base/_base.scss
2366
+ - fixtures/minify-css-app/source/stylesheets/base/_buttons.scss
2367
+ - fixtures/minify-css-app/source/stylesheets/base/_forms.scss
2368
+ - fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss
2369
+ - fixtures/minify-css-app/source/stylesheets/base/_lists.scss
2370
+ - fixtures/minify-css-app/source/stylesheets/base/_tables.scss
2371
+ - fixtures/minify-css-app/source/stylesheets/base/_typography.scss
2372
+ - fixtures/minify-css-app/source/stylesheets/base/_variables.scss
2373
+ - fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss
2374
+ - fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss
2375
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss
2376
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss
2377
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss
2378
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss
2379
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss
2380
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss
2381
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss
2382
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss
2383
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss
2384
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss
2385
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss
2386
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss
2387
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss
2388
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss
2389
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss
2390
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss
2391
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss
2392
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss
2393
+ - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss
2394
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
2395
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss
2396
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss
2397
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss
2398
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss
2399
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss
2400
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss
2401
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss
2402
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss
2403
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss
2404
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss
2405
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss
2406
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss
2407
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss
2408
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss
2409
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss
2410
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss
2411
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss
2412
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss
2413
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss
2414
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss
2415
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss
2416
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss
2417
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss
2418
+ - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss
2419
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss
2420
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss
2421
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss
2422
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss
2423
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss
2424
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss
2425
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss
2426
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss
2427
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss
2428
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss
2429
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss
2430
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss
2431
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss
2432
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss
2433
+ - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss
2434
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss
2435
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss
2436
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss
2437
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss
2438
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss
2439
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss
2440
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss
2441
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss
2442
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss
2443
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss
2444
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss
2445
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss
2446
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss
2447
+ - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss
2448
+ - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss
2449
+ - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss
2450
+ - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss
2451
+ - fixtures/minify-css-app/source/stylesheets/report.css
2452
+ - fixtures/minify-css-app/source/stylesheets/site.css.sass
2453
+ - fixtures/minify-css-app/source/stylesheets/site.xcss.sass
2454
+ - fixtures/minify-js-app/config.rb
2455
+ - fixtures/minify-js-app/source/inline-coffeescript.html.haml
2456
+ - fixtures/minify-js-app/source/inline-js.html.haml
2457
+ - fixtures/minify-js-app/source/inline-js.php
2458
+ - fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee
2459
+ - fixtures/minify-js-app/source/javascripts/js_test.js
2460
+ - fixtures/minify-js-app/source/javascripts/js_test.xjs
2461
+ - fixtures/minify-js-app/source/more-js/other.js
2462
+ - fixtures/missing-tilt-library-app/config.rb
2463
+ - fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki
2464
+ - fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki
2465
+ - fixtures/missing-tilt-library-app/source/textile-source.html.textile
2466
+ - fixtures/missing-tilt-library-app/source/wiki-source.html.wiki
2467
+ - fixtures/more-extensionless-text-files-app/config.rb
2468
+ - fixtures/more-extensionless-text-files-app/source/CNAME
2469
+ - fixtures/more-extensionless-text-files-app/source/LICENSE
2470
+ - fixtures/more-extensionless-text-files-app/source/README
2471
+ - fixtures/more-extensionless-text-files-app/source/index.html
2472
+ - fixtures/more-frontmatter-settings-app/config.rb
2473
+ - fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb
2474
+ - fixtures/more-frontmatter-settings-app/source/ignored.html.erb
2475
+ - fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb
2476
+ - fixtures/more-frontmatter-settings-app/source/no_index.html.erb
2477
+ - fixtures/more-ignore-app/source/about.html.erb
2478
+ - fixtures/more-ignore-app/source/images/icon/messages.png
2479
+ - fixtures/more-ignore-app/source/images/pic.png
2480
+ - fixtures/more-ignore-app/source/images/portrait.jpg
2481
+ - fixtures/more-ignore-app/source/index.html.erb
2482
+ - fixtures/more-ignore-app/source/plain.html
2483
+ - fixtures/more-ignore-app/source/reports/another.html
2484
+ - fixtures/more-ignore-app/source/reports/index.html
2485
+ - fixtures/more-markdown-app/source/layouts/layout.erb
2486
+ - fixtures/more-markdown-app/source/with_layout.html.markdown
2487
+ - fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb
2488
+ - fixtures/more-preview-app/config.rb
2489
+ - fixtures/more-preview-app/source/content.html.erb
2490
+ - fixtures/more-preview-app/source/layout.erb
2491
+ - fixtures/more-preview-app/source/stylesheets/_partial.sass
2492
+ - fixtures/more-preview-app/source/stylesheets/_partial2.css.sass
2493
+ - fixtures/more-preview-app/source/stylesheets/main.css.sass
2494
+ - fixtures/more-preview-app/source/stylesheets/main2.css.sass
2495
+ - fixtures/more-preview-app/source/stylesheets/plain.css.sass
2496
+ - fixtures/more-traversal-app/config.rb
2497
+ - fixtures/more-traversal-app/source/directory-indexed.html.erb
2498
+ - fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb
2499
+ - fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb
2500
+ - fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb
2501
+ - fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb
2502
+ - fixtures/more-traversal-app/source/index.html.erb
2503
+ - fixtures/more-traversal-app/source/layout.erb
2504
+ - fixtures/more-traversal-app/source/proxied.html.erb
2505
+ - fixtures/more-traversal-app/source/root.html.erb
2506
+ - fixtures/more-traversal-app/source/sub/index.html.erb
2507
+ - fixtures/more-traversal-app/source/sub/sibling.html.erb
2508
+ - fixtures/more-traversal-app/source/sub/sibling2.html.erb
2509
+ - fixtures/more-traversal-app/source/sub/sub2/index.html.erb
2510
+ - fixtures/more-traversal-app/source/sub/sub3/deep.html.erb
2511
+ - fixtures/multiple-data-sources-app/config.rb
2512
+ - fixtures/multiple-data-sources-app/data/data.yml
2513
+ - fixtures/multiple-data-sources-app/data/two.yml
2514
+ - fixtures/multiple-data-sources-app/data0/one.yml
2515
+ - fixtures/multiple-data-sources-app/data1/data1.yml
2516
+ - fixtures/multiple-data-sources-app/data1/one.yml
2517
+ - fixtures/multiple-data-sources-app/data2/data2.yml
2518
+ - fixtures/multiple-data-sources-app/data2/two.yml
2519
+ - fixtures/multiple-data-sources-app/source/index.html.erb
2520
+ - fixtures/multiple-layouts/config.rb
2521
+ - fixtures/multiple-layouts/source/index.html.erb
2522
+ - fixtures/multiple-layouts/source/layout.erb
2523
+ - fixtures/multiple-layouts/source/layout.str
2524
+ - fixtures/multiple-sources-app/config.rb
2525
+ - fixtures/multiple-sources-app/source/index.html.erb
2526
+ - fixtures/multiple-sources-app/source/override-in-two.html.erb
2527
+ - fixtures/multiple-sources-app/source0/override-in-one.html.erb
2528
+ - fixtures/multiple-sources-app/source1/index1.html.erb
2529
+ - fixtures/multiple-sources-app/source1/override-in-one.html.erb
2530
+ - fixtures/multiple-sources-app/source2/index2.html.erb
2531
+ - fixtures/multiple-sources-app/source2/override-in-two.html.erb
2532
+ - fixtures/multiple-sources-with-duplicate-file-names-app/config.rb
2533
+ - fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb
2534
+ - fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb
2535
+ - fixtures/nested-data-app/config.rb
2536
+ - fixtures/nested-data-app/data/examples/deeper/stuff.yml
2537
+ - fixtures/nested-data-app/data/examples/more.yml
2538
+ - fixtures/nested-data-app/data/examples/test.yml
2539
+ - fixtures/nested-data-app/data/examples/withcontent.yaml
2540
+ - fixtures/nested-data-app/source/extracontent.html.haml.erb
2541
+ - fixtures/nested-data-app/source/test.html.erb
2542
+ - fixtures/nested-layout-app/config.rb
2543
+ - fixtures/nested-layout-app/source/another.html.markdown
2544
+ - fixtures/nested-layout-app/source/data-one.html.erb
2545
+ - fixtures/nested-layout-app/source/data-two.html.erb
2546
+ - fixtures/nested-layout-app/source/haml-test.html.markdown
2547
+ - fixtures/nested-layout-app/source/index.html.erb
2548
+ - fixtures/nested-layout-app/source/layouts/inner.erb
2549
+ - fixtures/nested-layout-app/source/layouts/inner_haml.haml
2550
+ - fixtures/nested-layout-app/source/layouts/inner_slim.slim
2551
+ - fixtures/nested-layout-app/source/layouts/master.erb
2552
+ - fixtures/nested-layout-app/source/layouts/master_haml.haml
2553
+ - fixtures/nested-layout-app/source/layouts/master_slim.slim
2554
+ - fixtures/nested-layout-app/source/layouts/outer.erb
2555
+ - fixtures/nested-layout-app/source/layouts/outer_haml.haml
2556
+ - fixtures/nested-layout-app/source/layouts/outer_slim.slim
2557
+ - fixtures/nested-layout-app/source/slim-test.html.markdown
2558
+ - fixtures/no-layout/config.rb
2559
+ - fixtures/no-layout/source/index.html.erb
2560
+ - fixtures/padrino-helpers-app/config.rb
2561
+ - fixtures/padrino-helpers-app/source/former_padrino_test.html.erb
2562
+ - fixtures/page-classes-app/config.rb
2563
+ - fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb
2564
+ - fixtures/page-classes-app/source/1-starts-with-numeric.html.erb
2565
+ - fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb
2566
+ - fixtures/page-classes-app/source/page-classes.html.erb
2567
+ - fixtures/page-classes-app/source/sub1/page-classes.html.erb
2568
+ - fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb
2569
+ - fixtures/page-helper-layout-block-app/config.rb
2570
+ - fixtures/page-helper-layout-block-app/source/index.html.erb
2571
+ - fixtures/page-helper-layout-block-app/source/layouts/alt.erb
2572
+ - fixtures/page-helper-layout-block-app/source/layouts/layout.erb
2573
+ - fixtures/page-helper-layout-block-app/source/path/child.html.erb
2574
+ - fixtures/page-helper-layout-block-app/source/path/index.html.erb
2575
+ - fixtures/page-id-app/config-proc.rb
2576
+ - fixtures/page-id-app/config.rb
2577
+ - fixtures/page-id-app/source/feed.xml.erb
2578
+ - fixtures/page-id-app/source/fm.html.erb
2579
+ - fixtures/page-id-app/source/folder/foldern.html.erb
2580
+ - fixtures/page-id-app/source/fourty-two.html.erb
2581
+ - fixtures/page-id-app/source/implicit.html.erb
2582
+ - fixtures/page-id-app/source/index.html.erb
2583
+ - fixtures/page-id-app/source/overwrites/from-default.html.erb
2584
+ - fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb
2585
+ - fixtures/paginate-app/config.rb
2586
+ - fixtures/paginate-app/source/archive/2011/index.html.erb
2587
+ - fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown
2588
+ - fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown
2589
+ - fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown
2590
+ - fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown
2591
+ - fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown
2592
+ - fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown
2593
+ - fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown
2594
+ - fixtures/paginate-app/source/index.html.erb
2595
+ - fixtures/paginate-app/source/tag.html.erb
2596
+ - fixtures/partial-chained_templates-app/config.rb
2597
+ - fixtures/partials-app/config.rb
2598
+ - fixtures/partials-app/source/_block.erb
2599
+ - fixtures/partials-app/source/_code_snippet.html
2600
+ - fixtures/partials-app/source/_locals.erb
2601
+ - fixtures/partials-app/source/_main.erb
2602
+ - fixtures/partials-app/source/_main.str
2603
+ - fixtures/partials-app/source/block.html.erb
2604
+ - fixtures/partials-app/source/images/tiger.svg
2605
+ - fixtures/partials-app/source/index.html.erb
2606
+ - fixtures/partials-app/source/index_missing.html.erb
2607
+ - fixtures/partials-app/source/locals.html.erb
2608
+ - fixtures/partials-app/source/second.html.str
2609
+ - fixtures/partials-app/source/shared/_footer.erb
2610
+ - fixtures/partials-app/source/shared/_header.erb
2611
+ - fixtures/partials-app/source/shared/_snippet.html.erb
2612
+ - fixtures/partials-app/source/static_underscore.html.erb
2613
+ - fixtures/partials-app/source/sub/_local.erb
2614
+ - fixtures/partials-app/source/sub/index.html.erb
2615
+ - fixtures/partials-app/source/svg.html.erb
2616
+ - fixtures/partials-app/source/using_snippet.html.erb
2617
+ - fixtures/passthrough-app/source/.htaccess
2618
+ - fixtures/passthrough-app/source/inline-coffeescript.html.haml
2619
+ - fixtures/passthrough-app/source/inline-css.html.haml
2620
+ - fixtures/passthrough-app/source/inline-js.html.haml
2621
+ - fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee
2622
+ - fixtures/passthrough-app/source/javascripts/js_test.js
2623
+ - fixtures/passthrough-app/source/stylesheets/site.css.sass
2624
+ - fixtures/preview-app/config.rb
2625
+ - fixtures/preview-app/source/content.html.erb
2626
+ - fixtures/preview-app/source/layout.erb
2627
+ - fixtures/proxy-pages-app/config.rb
2628
+ - fixtures/proxy-pages-app/source/real.html
2629
+ - fixtures/proxy-pages-app/source/real/index.html.erb
2630
+ - fixtures/proxy-pages-app/source/should_be_ignored3.html
2631
+ - fixtures/proxy-pages-app/source/should_be_ignored6.html
2632
+ - fixtures/proxy-pages-app/source/should_be_ignored7.html
2633
+ - fixtures/proxy-pages-app/source/should_be_ignored8.html
2634
+ - fixtures/related-files-app/config.rb
2635
+ - fixtures/related-files-app/source/index.html.erb
2636
+ - fixtures/related-files-app/source/partials/_test.erb
2637
+ - fixtures/related-files-app/source/partials/_test2.haml
2638
+ - fixtures/related-files-app/source/stylesheets/_include3.sass
2639
+ - fixtures/related-files-app/source/stylesheets/_include4.scss
2640
+ - fixtures/related-files-app/source/stylesheets/include1.css
2641
+ - fixtures/related-files-app/source/stylesheets/include2.css.scss
2642
+ - fixtures/related-files-app/source/stylesheets/site.css.scss
2643
+ - fixtures/relative-app/config.rb
2644
+ - fixtures/relative-app/source/images/blank.gif
2645
+ - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
2646
+ - fixtures/relative-assets-app/config.rb
2647
+ - fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb
2648
+ - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot
2649
+ - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg
2650
+ - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf
2651
+ - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff
2652
+ - fixtures/relative-assets-app/source/images/blank.gif
2653
+ - fixtures/relative-assets-app/source/images/blank2.gif
2654
+ - fixtures/relative-assets-app/source/img/blank.gif
2655
+ - fixtures/relative-assets-app/source/javascripts/app.js
2656
+ - fixtures/relative-assets-app/source/javascripts/application.js
2657
+ - fixtures/relative-assets-app/source/relative_image.html.erb
2658
+ - fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb
2659
+ - fixtures/relative-assets-app/source/stylesheets/fonts.css
2660
+ - fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss
2661
+ - fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass
2662
+ - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass
2663
+ - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss
2664
+ - fixtures/sass-assets-path-app/config.rb
2665
+ - fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass
2666
+ - fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass
2667
+ - fixtures/sass-in-slim-app/config.rb
2668
+ - fixtures/scss-app/config.rb
2669
+ - fixtures/scss-app/source/stylesheets/error.css.sass
2670
+ - fixtures/scss-app/source/stylesheets/layout.css.sass
2671
+ - fixtures/scss-app/source/stylesheets/site_scss.css.scss
2672
+ - fixtures/sinatra-app/config.rb
2673
+ - fixtures/sinatra-app/source/index.html.erb
2674
+ - fixtures/slim-content-for-app/config.rb
2675
+ - fixtures/slim-content-for-app/source/index.html.slim
2676
+ - fixtures/slim-content-for-app/source/layouts/layout.slim
2677
+ - fixtures/strip-url-app/config.rb
2678
+ - fixtures/strip-url-app/source/index.html.erb
2679
+ - fixtures/strip-url-app/source/other.html.erb
2680
+ - fixtures/strip-url-app/source/subdir/index.html.erb
2681
+ - fixtures/stylus-preview-app/config.rb
2682
+ - fixtures/stylus-preview-app/source/content.html.erb
2683
+ - fixtures/stylus-preview-app/source/stylesheets/_partial.styl
2684
+ - fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl
2685
+ - fixtures/stylus-preview-app/source/stylesheets/main.css.styl
2686
+ - fixtures/stylus-preview-app/source/stylesheets/main2.css.styl
2687
+ - fixtures/stylus-preview-app/source/stylesheets/plain.css.styl
2688
+ - fixtures/traversal-app/config.rb
2689
+ - fixtures/traversal-app/source/.htaccess
2690
+ - fixtures/traversal-app/source/directory-indexed.html.erb
2691
+ - fixtures/traversal-app/source/directory-indexed/sibling.html.erb
2692
+ - fixtures/traversal-app/source/directory-indexed/sibling2.html.erb
2693
+ - fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb
2694
+ - fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb
2695
+ - fixtures/traversal-app/source/index.html.erb
2696
+ - fixtures/traversal-app/source/layout.erb
2697
+ - fixtures/traversal-app/source/proxied.html.erb
2698
+ - fixtures/traversal-app/source/root.html.erb
2699
+ - fixtures/traversal-app/source/sub/index.html.erb
2700
+ - fixtures/traversal-app/source/sub/sibling.html.erb
2701
+ - fixtures/traversal-app/source/sub/sibling2.html.erb
2702
+ - fixtures/traversal-app/source/sub/sub2/index.html.erb
2703
+ - fixtures/traversal-app/source/sub/sub3/deep.html.erb
2704
+ - fixtures/v4-extension-callbacks/config.rb
2705
+ - fixtures/v4-extension-callbacks/source/index.html.erb
2706
+ - fixtures/wildcard-app/config.rb
2707
+ - fixtures/wildcard-app/source/admin/index.html.erb
2708
+ - fixtures/wildcard-app/source/admin/page.html.erb
2709
+ - fixtures/wildcard-app/source/index.html.erb
2710
+ - fixtures/wildcard-app/source/layouts/admin.erb
2711
+ - fixtures/wildcard-app/source/layouts/layout.erb
2712
+ - fixtures/wildcard-directory-index-app/config.rb
2713
+ - fixtures/wildcard-directory-index-app/source/admin/index.html.erb
2714
+ - fixtures/wildcard-directory-index-app/source/admin/page.html.erb
2715
+ - fixtures/wildcard-directory-index-app/source/index.html.erb
2716
+ - fixtures/wildcard-directory-index-app/source/layouts/admin.erb
2717
+ - fixtures/wildcard-directory-index-app/source/layouts/layout.erb