middleman-core 3.1.0.rc.4 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -134,3 +134,14 @@ Feature: Relative Assets
134
134
  And the Server is running at "relative-assets-app"
135
135
  When I go to "/sub/image_tag.html"
136
136
  Then I should see '<img src="../img/blank.gif" />'
137
+
138
+ Scenario: Relative assets should not break data URIs in image_tag
139
+ Given a fixture app "relative-assets-app"
140
+ Given "relative_assets" feature is "enabled"
141
+ And a file named "source/sub/image_tag.html.erb" with:
142
+ """
143
+ <%= image_tag "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" %>
144
+ """
145
+ And the Server is running at "relative-assets-app"
146
+ When I go to "/sub/image_tag.html"
147
+ Then I should see '<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" />'
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  # Current Version
3
3
  # @return [String]
4
- VERSION = '3.1.0.rc.4' unless const_defined?(:VERSION)
4
+ VERSION = '3.1.0' unless const_defined?(:VERSION)
5
5
  end
@@ -134,7 +134,7 @@ class Middleman::CoreExtensions::DefaultHelpers < ::Middleman::Extension
134
134
  # @param [String] source The path to the file
135
135
  # @return [String]
136
136
  def asset_path(kind, source)
137
- return source if source.to_s.include?('//')
137
+ return source if source.to_s.include?('//') || source.to_s.start_with?('data:')
138
138
  asset_folder = case kind
139
139
  when :css then css_dir
140
140
  when :js then js_dir
@@ -157,7 +157,7 @@ class Middleman::CoreExtensions::DefaultHelpers < ::Middleman::Extension
157
157
  # @return [String] The fully qualified asset url
158
158
  def asset_url(path, prefix="")
159
159
  # Don't touch assets which already have a full path
160
- if path.include?("//")
160
+ if path.include?('//') or path.start_with?('data:')
161
161
  path
162
162
  else # rewrite paths to use their destination path
163
163
  path = File.join(prefix, path)
@@ -18,7 +18,7 @@ class Middleman::Extensions::RelativeAssets < ::Middleman::Extension
18
18
  def asset_url(path, prefix="")
19
19
  path = super(path, prefix)
20
20
 
21
- if path.include?("//") || !current_resource
21
+ if path.include?('//') || path.start_with?('data:') || !current_resource
22
22
  path
23
23
  else
24
24
  current_dir = Pathname('/' + current_resource.destination_path)
metadata CHANGED
@@ -1,7 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0.rc.4
4
+ version: 3.1.0
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Thomas Reynolds
@@ -9,11 +10,12 @@ authors:
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2013-06-13 00:00:00.000000000 Z
13
+ date: 2013-06-15 00:00:00.000000000 Z
13
14
  dependencies:
14
15
  - !ruby/object:Gem::Dependency
15
16
  name: bundler
16
17
  requirement: !ruby/object:Gem::Requirement
18
+ none: false
17
19
  requirements:
18
20
  - - ~>
19
21
  - !ruby/object:Gem::Version
@@ -21,6 +23,7 @@ dependencies:
21
23
  type: :runtime
22
24
  prerelease: false
23
25
  version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
24
27
  requirements:
25
28
  - - ~>
26
29
  - !ruby/object:Gem::Version
@@ -28,20 +31,23 @@ dependencies:
28
31
  - !ruby/object:Gem::Dependency
29
32
  name: rack
30
33
  requirement: !ruby/object:Gem::Requirement
34
+ none: false
31
35
  requirements:
32
- - - '>='
36
+ - - ! '>='
33
37
  - !ruby/object:Gem::Version
34
38
  version: 1.4.5
35
39
  type: :runtime
36
40
  prerelease: false
37
41
  version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
38
43
  requirements:
39
- - - '>='
44
+ - - ! '>='
40
45
  - !ruby/object:Gem::Version
41
46
  version: 1.4.5
42
47
  - !ruby/object:Gem::Dependency
43
48
  name: tilt
44
49
  requirement: !ruby/object:Gem::Requirement
50
+ none: false
45
51
  requirements:
46
52
  - - ~>
47
53
  - !ruby/object:Gem::Version
@@ -49,6 +55,7 @@ dependencies:
49
55
  type: :runtime
50
56
  prerelease: false
51
57
  version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
52
59
  requirements:
53
60
  - - ~>
54
61
  - !ruby/object:Gem::Version
@@ -56,6 +63,7 @@ dependencies:
56
63
  - !ruby/object:Gem::Dependency
57
64
  name: rack-test
58
65
  requirement: !ruby/object:Gem::Requirement
66
+ none: false
59
67
  requirements:
60
68
  - - ~>
61
69
  - !ruby/object:Gem::Version
@@ -63,6 +71,7 @@ dependencies:
63
71
  type: :runtime
64
72
  prerelease: false
65
73
  version_requirements: !ruby/object:Gem::Requirement
74
+ none: false
66
75
  requirements:
67
76
  - - ~>
68
77
  - !ruby/object:Gem::Version
@@ -70,8 +79,9 @@ dependencies:
70
79
  - !ruby/object:Gem::Dependency
71
80
  name: thor
72
81
  requirement: !ruby/object:Gem::Requirement
82
+ none: false
73
83
  requirements:
74
- - - '>='
84
+ - - ! '>='
75
85
  - !ruby/object:Gem::Version
76
86
  version: 0.15.2
77
87
  - - <
@@ -80,8 +90,9 @@ dependencies:
80
90
  type: :runtime
81
91
  prerelease: false
82
92
  version_requirements: !ruby/object:Gem::Requirement
93
+ none: false
83
94
  requirements:
84
- - - '>='
95
+ - - ! '>='
85
96
  - !ruby/object:Gem::Version
86
97
  version: 0.15.2
87
98
  - - <
@@ -90,6 +101,7 @@ dependencies:
90
101
  - !ruby/object:Gem::Dependency
91
102
  name: activesupport
92
103
  requirement: !ruby/object:Gem::Requirement
104
+ none: false
93
105
  requirements:
94
106
  - - ~>
95
107
  - !ruby/object:Gem::Version
@@ -97,6 +109,7 @@ dependencies:
97
109
  type: :runtime
98
110
  prerelease: false
99
111
  version_requirements: !ruby/object:Gem::Requirement
112
+ none: false
100
113
  requirements:
101
114
  - - ~>
102
115
  - !ruby/object:Gem::Version
@@ -104,6 +117,7 @@ dependencies:
104
117
  - !ruby/object:Gem::Dependency
105
118
  name: listen
106
119
  requirement: !ruby/object:Gem::Requirement
120
+ none: false
107
121
  requirements:
108
122
  - - ~>
109
123
  - !ruby/object:Gem::Version
@@ -111,6 +125,7 @@ dependencies:
111
125
  type: :runtime
112
126
  prerelease: false
113
127
  version_requirements: !ruby/object:Gem::Requirement
128
+ none: false
114
129
  requirements:
115
130
  - - ~>
116
131
  - !ruby/object:Gem::Version
@@ -118,6 +133,7 @@ dependencies:
118
133
  - !ruby/object:Gem::Dependency
119
134
  name: i18n
120
135
  requirement: !ruby/object:Gem::Requirement
136
+ none: false
121
137
  requirements:
122
138
  - - ~>
123
139
  - !ruby/object:Gem::Version
@@ -125,6 +141,7 @@ dependencies:
125
141
  type: :runtime
126
142
  prerelease: false
127
143
  version_requirements: !ruby/object:Gem::Requirement
144
+ none: false
128
145
  requirements:
129
146
  - - ~>
130
147
  - !ruby/object:Gem::Version
@@ -1320,775 +1337,33 @@ files:
1320
1337
  homepage: http://middlemanapp.com
1321
1338
  licenses:
1322
1339
  - MIT
1323
- metadata: {}
1324
1340
  post_install_message:
1325
1341
  rdoc_options: []
1326
1342
  require_paths:
1327
1343
  - lib
1328
1344
  required_ruby_version: !ruby/object:Gem::Requirement
1345
+ none: false
1329
1346
  requirements:
1330
- - - '>='
1347
+ - - ! '>='
1331
1348
  - !ruby/object:Gem::Version
1332
1349
  version: '0'
1350
+ segments:
1351
+ - 0
1352
+ hash: 1704101914227340319
1333
1353
  required_rubygems_version: !ruby/object:Gem::Requirement
1354
+ none: false
1334
1355
  requirements:
1335
- - - '>'
1356
+ - - ! '>='
1336
1357
  - !ruby/object:Gem::Version
1337
- version: 1.3.1
1358
+ version: '0'
1359
+ segments:
1360
+ - 0
1361
+ hash: 1704101914227340319
1338
1362
  requirements: []
1339
1363
  rubyforge_project:
1340
- rubygems_version: 2.0.2
1364
+ rubygems_version: 1.8.24
1341
1365
  signing_key:
1342
- specification_version: 4
1366
+ specification_version: 3
1343
1367
  summary: Hand-crafted frontend development
1344
- test_files:
1345
- - features/3rd_party_cli.feature
1346
- - features/asset_hash.feature
1347
- - features/asset_host.feature
1348
- - features/auto_layout.feature
1349
- - features/automatic_directory_matcher.feature
1350
- - features/automatic_image_sizes.feature
1351
- - features/builder.feature
1352
- - features/cache_buster.feature
1353
- - features/capture_html.feature
1354
- - features/chained_templates.feature
1355
- - features/clean_build.feature
1356
- - features/cli_extension.feature
1357
- - features/cli_init.feature
1358
- - features/coffee-script.feature
1359
- - features/compass-sprites.feature
1360
- - features/content_for.feature
1361
- - features/content_type.feature
1362
- - features/current_page_request_path_backwards.feature
1363
- - features/custom-source.feature
1364
- - features/custom_layout_engines.feature
1365
- - features/custom_layouts.feature
1366
- - features/data.feature
1367
- - features/directory_index.feature
1368
- - features/dynamic_pages.feature
1369
- - features/extensionless_text_files.feature
1370
- - features/feature_params.feature
1371
- - features/fonts.feature
1372
- - features/former_padrino_helpers.feature
1373
- - features/front-matter-neighbor.feature
1374
- - features/front-matter.feature
1375
- - features/frontmatter_page_settings.feature
1376
- - features/gzip.feature
1377
- - features/helpers_auto_javascript_include_tag.feature
1378
- - features/helpers_auto_stylesheet_link_tag.feature
1379
- - features/helpers_external.feature
1380
- - features/helpers_form_tag.feature
1381
- - features/helpers_link_to.feature
1382
- - features/helpers_lorem.feature
1383
- - features/helpers_page_classes.feature
1384
- - features/helpers_url_for.feature
1385
- - features/i18n_builder.feature
1386
- - features/i18n_force_locale.feature
1387
- - features/i18n_preview.feature
1388
- - features/ignore.feature
1389
- - features/ignore_already_minified.feature
1390
- - features/implied_extensions.feature
1391
- - features/instance_vars.feature
1392
- - features/layouts_dir.feature
1393
- - features/liquid.feature
1394
- - features/markdown.feature
1395
- - features/markdown_redcarpet.feature
1396
- - features/markdown_redcarpet_in_haml.feature
1397
- - features/minify_css.feature
1398
- - features/minify_javascript.feature
1399
- - features/missing-tilt-lib.feature
1400
- - features/more-clean_build.feature
1401
- - features/more-extensionless_text_files.feature
1402
- - features/more-frontmatter_page_settings.feature
1403
- - features/more-ignore.feature
1404
- - features/more-implied_extensions.feature
1405
- - features/more-instance_vars.feature
1406
- - features/more-sitemap_traversal.feature
1407
- - features/more-wildcard_page_helper.feature
1408
- - features/mount_rack.feature
1409
- - features/nested_layouts.feature
1410
- - features/partials.feature
1411
- - features/partials_dir.feature
1412
- - features/preview_changes.feature
1413
- - features/proxy_pages.feature
1414
- - features/queryable.feature
1415
- - features/relative_assets.feature
1416
- - features/request_params.feature
1417
- - features/sass-assets-paths.feature
1418
- - features/sass_cache_path.feature
1419
- - features/sass_partials.feature
1420
- - features/scss-support.feature
1421
- - features/sitemap_traversal.feature
1422
- - features/slim.feature
1423
- - features/static_server.feature
1424
- - features/step_definitions/page_layout_steps.rb
1425
- - features/step_definitions/queryable_steps.rb
1426
- - features/strip_url.feature
1427
- - features/stylus.feature
1428
- - features/support/env.rb
1429
- - features/tilde_directories.feature
1430
- - features/twitter-bootstrap-compile.feature
1431
- - features/unicode_filecontents.feature
1432
- - features/unicode_filenames.feature
1433
- - features/v4_extension_callbacks.feature
1434
- - features/wildcard_page_helper.feature
1435
- - fixtures/asset-hash-app/config.rb
1436
- - fixtures/asset-hash-app/lib/middleware.rb
1437
- - fixtures/asset-hash-app/source/apple-touch-icon.png
1438
- - fixtures/asset-hash-app/source/favicon.ico
1439
- - fixtures/asset-hash-app/source/images/100px.gif
1440
- - fixtures/asset-hash-app/source/images/100px.jpg
1441
- - fixtures/asset-hash-app/source/images/100px.png
1442
- - fixtures/asset-hash-app/source/index.html.erb
1443
- - fixtures/asset-hash-app/source/javascripts/application.js
1444
- - fixtures/asset-hash-app/source/layout.erb
1445
- - fixtures/asset-hash-app/source/other.html.erb
1446
- - fixtures/asset-hash-app/source/partials.html.erb
1447
- - fixtures/asset-hash-app/source/stylesheets/_partial.sass
1448
- - fixtures/asset-hash-app/source/stylesheets/site.css.scss
1449
- - fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
1450
- - fixtures/asset-hash-app/source/subdir/index.html.erb
1451
- - fixtures/asset-hash-host-app/config.rb
1452
- - fixtures/asset-hash-host-app/source/images/100px.gif
1453
- - fixtures/asset-hash-host-app/source/images/100px.jpg
1454
- - fixtures/asset-hash-host-app/source/images/100px.png
1455
- - fixtures/asset-hash-host-app/source/index.html.erb
1456
- - fixtures/asset-hash-host-app/source/layout.erb
1457
- - fixtures/asset-hash-host-app/source/other.html.erb
1458
- - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
1459
- - fixtures/asset-hash-host-app/source/subdir/index.html.erb
1460
- - fixtures/asset-host-app/config.rb
1461
- - fixtures/asset-host-app/source/.htaccess
1462
- - fixtures/asset-host-app/source/asset_host.html.erb
1463
- - fixtures/asset-host-app/source/images/blank.gif
1464
- - fixtures/asset-host-app/source/stylesheets/asset_host.css.sass
1465
- - fixtures/auto-css-app/config.rb
1466
- - fixtures/auto-css-app/source/auto-css.html.erb
1467
- - fixtures/auto-css-app/source/auto-css/auto-css.html.erb
1468
- - fixtures/auto-css-app/source/auto-css/index.html.erb
1469
- - fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb
1470
- - fixtures/auto-css-app/source/stylesheets/auto-css.css
1471
- - fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css
1472
- - fixtures/auto-css-app/source/stylesheets/auto-css/index.css
1473
- - fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css
1474
- - fixtures/auto-js-app/config.rb
1475
- - fixtures/auto-js-app/source/auto-js.html.erb
1476
- - fixtures/auto-js-app/source/auto-js/auto-js.html.erb
1477
- - fixtures/auto-js-app/source/auto-js/index.html.erb
1478
- - fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb
1479
- - fixtures/auto-js-app/source/javascripts/auto-js.js
1480
- - fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js
1481
- - fixtures/auto-js-app/source/javascripts/auto-js/index.js
1482
- - fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js
1483
- - fixtures/automatic-directory-matcher-app/config.rb
1484
- - fixtures/automatic-directory-matcher-app/source/root-plain.html
1485
- - fixtures/automatic-directory-matcher-app/source/root.html.erb
1486
- - fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html
1487
- - fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb
1488
- - fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html
1489
- - fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb
1490
- - fixtures/automatic-image-size-app/config.rb
1491
- - fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb
1492
- - fixtures/automatic-image-size-app/source/images/blank.gif
1493
- - fixtures/basic-data-app/config.rb
1494
- - fixtures/basic-data-app/data/test.yml
1495
- - fixtures/basic-data-app/data/test2.json
1496
- - fixtures/basic-data-app/source/data.html.erb
1497
- - fixtures/basic-data-app/source/data3.html.erb
1498
- - fixtures/build-with-errors-app/config.rb
1499
- - fixtures/build-with-errors-app/source/index.html.erb
1500
- - fixtures/cache-buster-app/config.rb
1501
- - fixtures/cache-buster-app/source/cache-buster.html.erb
1502
- - fixtures/cache-buster-app/source/images/blank.gif
1503
- - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
1504
- - fixtures/cache-buster-app/source/stylesheets/site.css.sass
1505
- - fixtures/capture-html-app/config.rb
1506
- - fixtures/capture-html-app/source/capture_html_erb.html.erb
1507
- - fixtures/capture-html-app/source/capture_html_haml.html.haml
1508
- - fixtures/capture-html-app/source/capture_html_slim.html.slim
1509
- - fixtures/capture-html-app/source/layouts/capture_html.erb
1510
- - fixtures/chained-app/config.rb
1511
- - fixtures/chained-app/data/article.yml
1512
- - fixtures/chained-app/source/index.html.str.erb
1513
- - fixtures/clean-app/config-complications.rb
1514
- - fixtures/clean-app/config-empty.rb
1515
- - fixtures/clean-app/config.rb
1516
- - fixtures/clean-app/source/index.html.erb
1517
- - fixtures/clean-app/source/layout.erb
1518
- - fixtures/clean-app/source/layouts/custom.erb
1519
- - fixtures/clean-app/source/real.html
1520
- - fixtures/clean-app/source/real/index.html.erb
1521
- - fixtures/clean-app/source/should_be_ignored.html
1522
- - fixtures/clean-app/source/should_be_ignored2.html
1523
- - fixtures/clean-app/source/should_be_ignored3.html
1524
- - fixtures/clean-app/source/static.html
1525
- - fixtures/clean-dir-app/config.rb
1526
- - fixtures/clean-dir-app/source/about.html
1527
- - fixtures/clean-nested-app/config.rb
1528
- - fixtures/clean-nested-app/source/about.html
1529
- - fixtures/clean-nested-app/source/nested/nested.html
1530
- - fixtures/coffeescript-app/config.rb
1531
- - fixtures/coffeescript-app/source/inline-coffeescript.html.haml
1532
- - fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee
1533
- - fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee
1534
- - fixtures/compass-sprites-app/config.rb
1535
- - fixtures/compass-sprites-app/source/images/icon/arrow_down.png
1536
- - fixtures/compass-sprites-app/source/images/icon/arrow_left.png
1537
- - fixtures/compass-sprites-app/source/images/icon/arrow_right.png
1538
- - fixtures/compass-sprites-app/source/images/icon/arrow_up.png
1539
- - fixtures/compass-sprites-app/source/stylesheets/site.css.scss
1540
- - fixtures/content-for-app/config.rb
1541
- - fixtures/content-for-app/source/content_for_erb.html.erb
1542
- - fixtures/content-for-app/source/content_for_haml.html.haml
1543
- - fixtures/content-for-app/source/content_for_slim.html.slim
1544
- - fixtures/content-for-app/source/layouts/content_for.erb
1545
- - fixtures/content-type-app/config.rb
1546
- - fixtures/content-type-app/source/.htaccess
1547
- - fixtures/content-type-app/source/README
1548
- - fixtures/content-type-app/source/images/blank.gif
1549
- - fixtures/content-type-app/source/index.html
1550
- - fixtures/content-type-app/source/javascripts/app.js
1551
- - fixtures/content-type-app/source/override.html
1552
- - fixtures/content-type-app/source/stylesheets/site.css
1553
- - fixtures/csspie/config.rb
1554
- - fixtures/csspie/source/stylesheets/PIE.htc
1555
- - fixtures/current-page-app/config.rb
1556
- - fixtures/current-page-app/source/request-path.html.erb
1557
- - fixtures/custom-layout-app/config.rb
1558
- - fixtures/custom-layout-app/source/index.html.erb
1559
- - fixtures/custom-layout-app/source/layout.str
1560
- - fixtures/custom-layout-app2/config.rb
1561
- - fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb
1562
- - fixtures/custom-layout-app2/source/custom-layout.html.erb
1563
- - fixtures/custom-layout-app2/source/layouts/custom.erb
1564
- - fixtures/custom-src-app/config.rb
1565
- - fixtures/custom-src-app/src/index.html
1566
- - fixtures/custom-src-app/src/layouts/layout.html.erb
1567
- - fixtures/data-app/config.rb
1568
- - fixtures/data-app/data/pages.yml
1569
- - fixtures/data-app/source/index.html.erb
1570
- - fixtures/data-app/source/layout.erb
1571
- - fixtures/default-partials-dir-app/source/_partial.html.erb
1572
- - fixtures/default-partials-dir-app/source/index.html.erb
1573
- - fixtures/different-engine-layout/config.rb
1574
- - fixtures/different-engine-layout/source/index.haml
1575
- - fixtures/different-engine-layout/source/index.html.str
1576
- - fixtures/different-engine-layout/source/layout.erb
1577
- - fixtures/different-engine-partial/config.rb
1578
- - fixtures/different-engine-partial/source/index.html.erb
1579
- - fixtures/different-engine-partial/source/layouts/layout.erb
1580
- - fixtures/different-engine-partial/source/shared/_footer.str
1581
- - fixtures/different-engine-partial/source/shared/_header.erb
1582
- - fixtures/dynamic-pages-app/config.rb
1583
- - fixtures/dynamic-pages-app/source/real.html
1584
- - fixtures/dynamic-pages-app/source/real/index.html.erb
1585
- - fixtures/dynamic-pages-app/source/should_be_ignored.html
1586
- - fixtures/dynamic-pages-app/source/should_be_ignored2.html
1587
- - fixtures/dynamic-pages-app/source/should_be_ignored3.html
1588
- - fixtures/dynamic-pages-app/source/should_be_ignored4.html
1589
- - fixtures/dynamic-pages-app/source/should_be_ignored5.html
1590
- - fixtures/dynamic-pages-app/source/should_be_ignored6.html
1591
- - fixtures/dynamic-pages-app/source/should_be_ignored7.html
1592
- - fixtures/dynamic-pages-app/source/should_be_ignored8.html
1593
- - fixtures/empty-app/not-config.rb
1594
- - fixtures/engine-matching-layout/config.rb
1595
- - fixtures/engine-matching-layout/source/index.html.erb
1596
- - fixtures/engine-matching-layout/source/layout.erb
1597
- - fixtures/extensionless-text-files-app/config.rb
1598
- - fixtures/extensionless-text-files-app/source/CNAME
1599
- - fixtures/extensionless-text-files-app/source/LICENSE
1600
- - fixtures/extensionless-text-files-app/source/README
1601
- - fixtures/extensionless-text-files-app/source/index.html
1602
- - fixtures/external-helpers/config.rb
1603
- - fixtures/external-helpers/helpers/derp.rb
1604
- - fixtures/external-helpers/helpers/four_helpers.rb
1605
- - fixtures/external-helpers/helpers/one_helper.rb
1606
- - fixtures/external-helpers/helpers/yet_another_thingy.rb
1607
- - fixtures/external-helpers/lib/hello_helper.rb
1608
- - fixtures/external-helpers/source/automatic.html.erb
1609
- - fixtures/external-helpers/source/index.html.erb
1610
- - fixtures/feature-params-app/config.rb
1611
- - fixtures/feature-params-app/source/index.html.erb
1612
- - fixtures/fonts-app/config.rb
1613
- - fixtures/fonts-app/source/fonts/StMarie-Thin.otf
1614
- - fixtures/fonts-app/source/fonts/blank/blank.otf
1615
- - fixtures/fonts-app/source/stylesheets/fonts.css.sass
1616
- - fixtures/frontmatter-app/config.rb
1617
- - fixtures/frontmatter-app/source/front-matter-2.php.erb
1618
- - fixtures/frontmatter-app/source/front-matter-auto.erb
1619
- - fixtures/frontmatter-app/source/front-matter-change.html.erb
1620
- - fixtures/frontmatter-app/source/front-matter-encoding.html.erb
1621
- - fixtures/frontmatter-app/source/front-matter-line-2.html.erb
1622
- - fixtures/frontmatter-app/source/json-front-matter-2.php.erb
1623
- - fixtures/frontmatter-app/source/json-front-matter-auto.erb
1624
- - fixtures/frontmatter-app/source/json-front-matter-encoding.html.erb
1625
- - fixtures/frontmatter-app/source/json-front-matter-line-2.html.erb
1626
- - fixtures/frontmatter-app/source/json-front-matter.html.erb
1627
- - fixtures/frontmatter-app/source/raw-front-matter.html
1628
- - fixtures/frontmatter-app/source/raw-front-matter.php
1629
- - fixtures/frontmatter-neighbor-app/config.rb
1630
- - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb
1631
- - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter
1632
- - fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb
1633
- - fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb.frontmatter
1634
- - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb
1635
- - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter
1636
- - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb
1637
- - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter
1638
- - fixtures/frontmatter-neighbor-app/source/json-front-matter-2.php.erb
1639
- - fixtures/frontmatter-neighbor-app/source/json-front-matter-2.php.erb.frontmatter
1640
- - fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb
1641
- - fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb.frontmatter
1642
- - fixtures/frontmatter-neighbor-app/source/json-front-matter.html.erb
1643
- - fixtures/frontmatter-neighbor-app/source/json-front-matter.html.erb.frontmatter
1644
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html
1645
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter
1646
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php
1647
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter
1648
- - fixtures/frontmatter-settings-app/config.rb
1649
- - fixtures/frontmatter-settings-app/source/alternate_layout.html.erb
1650
- - fixtures/frontmatter-settings-app/source/ignored.html.erb
1651
- - fixtures/frontmatter-settings-app/source/layouts/alternate.erb
1652
- - fixtures/frontmatter-settings-app/source/layouts/override.erb
1653
- - fixtures/frontmatter-settings-app/source/override_layout.html.erb
1654
- - fixtures/frontmatter-settings-app/source/page_mentioned.html.erb
1655
- - fixtures/frontmatter-settings-neighbor-app/config.rb
1656
- - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb
1657
- - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter
1658
- - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb
1659
- - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter
1660
- - fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb
1661
- - fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb
1662
- - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb
1663
- - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter
1664
- - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb
1665
- - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter
1666
- - fixtures/generator-test/config.rb
1667
- - fixtures/generator-test/source/index.html.erb
1668
- - fixtures/glob-app/config.rb
1669
- - fixtures/glob-app/source/index.html.erb
1670
- - fixtures/glob-app/source/stylesheets/site.css.str
1671
- - fixtures/gzip-app/config.rb
1672
- - fixtures/gzip-app/source/index.html
1673
- - fixtures/gzip-app/source/javascripts/test.js
1674
- - fixtures/gzip-app/source/stylesheets/test.css
1675
- - fixtures/i18n-alt-root-app/locales/en.yml
1676
- - fixtures/i18n-alt-root-app/locales/es.yml
1677
- - fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb
1678
- - fixtures/i18n-alt-root-app/source/lang_data/index.html.erb
1679
- - fixtures/i18n-alt-root-app/source/layout.erb
1680
- - fixtures/i18n-default-app/locales/en.yml
1681
- - fixtures/i18n-default-app/locales/es.yml
1682
- - fixtures/i18n-default-app/source/localizable/index.html.erb
1683
- - fixtures/i18n-force-locale/config.rb
1684
- - fixtures/i18n-force-locale/locales/en.yml
1685
- - fixtures/i18n-force-locale/locales/es.yml
1686
- - fixtures/i18n-force-locale/locales/fr.yml
1687
- - fixtures/i18n-force-locale/source/index.haml
1688
- - fixtures/i18n-nested-app/locales/en.yml
1689
- - fixtures/i18n-nested-app/locales/en/more.yml
1690
- - fixtures/i18n-nested-app/locales/es.yml
1691
- - fixtures/i18n-nested-app/locales/es/mucho.yml
1692
- - fixtures/i18n-nested-app/source/localizable/index.html.erb
1693
- - fixtures/i18n-test-app/locales/en.yml
1694
- - fixtures/i18n-test-app/locales/es.yml
1695
- - fixtures/i18n-test-app/source/CNAME
1696
- - fixtures/i18n-test-app/source/layout.erb
1697
- - fixtures/i18n-test-app/source/localizable/hello.html.erb
1698
- - fixtures/i18n-test-app/source/localizable/index.html.erb
1699
- - fixtures/i18n-test-app/source/morning.en.html.erb
1700
- - fixtures/i18n-test-app/source/morning.es.html.erb
1701
- - fixtures/i18n-test-app/source/one.en.md
1702
- - fixtures/i18n-test-app/source/one.es.md
1703
- - fixtures/i18n-test-app/source/password.txt
1704
- - fixtures/i18n-test-app/source/stylesheets/site.css
1705
- - fixtures/ignore-app/source/about.html.erb
1706
- - fixtures/ignore-app/source/images/icon/messages.png
1707
- - fixtures/ignore-app/source/images/pic.png
1708
- - fixtures/ignore-app/source/images/portrait.jpg
1709
- - fixtures/ignore-app/source/index.html.erb
1710
- - fixtures/ignore-app/source/plain.html
1711
- - fixtures/ignore-app/source/reports/another.html
1712
- - fixtures/ignore-app/source/reports/index.html
1713
- - fixtures/implied-extensions-app/config.rb
1714
- - fixtures/implied-extensions-app/source/index.erb
1715
- - fixtures/indexable-app/config.rb
1716
- - fixtures/indexable-app/source/.htaccess
1717
- - fixtures/indexable-app/source/.htpasswd
1718
- - fixtures/indexable-app/source/a_folder/needs_index.html
1719
- - fixtures/indexable-app/source/leave_me_alone.html
1720
- - fixtures/indexable-app/source/needs_index.html
1721
- - fixtures/indexable-app/source/regular/index.html
1722
- - fixtures/indexable-app/source/wildcard_leave_me_alone.html
1723
- - fixtures/instance-vars-app/config.rb
1724
- - fixtures/instance-vars-app/source/content.html.erb
1725
- - fixtures/instance-vars-app/source/layout.erb
1726
- - fixtures/large-build-app/config.rb
1727
- - fixtures/large-build-app/source/.htaccess
1728
- - fixtures/large-build-app/source/.htpasswd
1729
- - fixtures/large-build-app/source/_partial.erb
1730
- - fixtures/large-build-app/source/feed.xml.builder
1731
- - fixtures/large-build-app/source/images/Child folder/regular_file(example).txt
1732
- - fixtures/large-build-app/source/images/Read me (example).txt
1733
- - fixtures/large-build-app/source/images/blank.gif
1734
- - fixtures/large-build-app/source/index.html.erb
1735
- - fixtures/large-build-app/source/layout.erb
1736
- - fixtures/large-build-app/source/layouts/content_for.erb
1737
- - fixtures/large-build-app/source/layouts/custom.erb
1738
- - fixtures/large-build-app/source/other_layout.erb
1739
- - fixtures/large-build-app/source/services/index.html.erb
1740
- - fixtures/large-build-app/source/spaces in file.html.erb
1741
- - fixtures/large-build-app/source/static.html
1742
- - fixtures/large-build-app/source/stylesheets/static.css
1743
- - fixtures/layouts-dir-app/source/index.html.erb
1744
- - fixtures/layouts-dir-app/source/layouts/layout.erb
1745
- - fixtures/layouts-dir-app/source/layouts2/layout.erb
1746
- - fixtures/layouts-dir-app/source/nested/layouts2/layout.erb
1747
- - fixtures/link-to-app/config.rb
1748
- - fixtures/link-to-app/source/link_to_erb.html.erb
1749
- - fixtures/link-to-app/source/link_to_haml.html.haml
1750
- - fixtures/link-to-app/source/link_to_slim.html.slim
1751
- - fixtures/liquid-app/config.rb
1752
- - fixtures/liquid-app/data/test.yml
1753
- - fixtures/liquid-app/data/test2.json
1754
- - fixtures/liquid-app/source/_liquid_partial.liquid
1755
- - fixtures/liquid-app/source/data2.html.liquid
1756
- - fixtures/liquid-app/source/liquid_master.html.liquid
1757
- - fixtures/lorem-app/config.rb
1758
- - fixtures/lorem-app/source/lorem.html.erb
1759
- - fixtures/manual-layout-missing/config.rb
1760
- - fixtures/manual-layout-missing/source/index.html.erb
1761
- - fixtures/manual-layout-override/config.rb
1762
- - fixtures/manual-layout-override/source/index.html.erb
1763
- - fixtures/manual-layout-override/source/layouts/another.erb
1764
- - fixtures/manual-layout-override/source/layouts/custom.erb
1765
- - fixtures/manual-layout/config.rb
1766
- - fixtures/manual-layout/source/index.html.erb
1767
- - fixtures/manual-layout/source/layouts/custom.erb
1768
- - fixtures/markdown-app/config.rb
1769
- - fixtures/markdown-app/source/autolink.html.markdown
1770
- - fixtures/markdown-app/source/fenced_code_blocks.html.markdown
1771
- - fixtures/markdown-app/source/hard_wrap.html.markdown
1772
- - fixtures/markdown-app/source/images/blank.gif
1773
- - fixtures/markdown-app/source/index.html.markdown
1774
- - fixtures/markdown-app/source/no_intra_emphasis.html.markdown
1775
- - fixtures/markdown-app/source/smarty_pants.html.markdown
1776
- - fixtures/markdown-app/source/space_after_headers.html.markdown
1777
- - fixtures/markdown-app/source/strikethrough.html.markdown
1778
- - fixtures/markdown-app/source/superscript.html.markdown
1779
- - fixtures/markdown-app/source/tables.html.markdown
1780
- - fixtures/markdown-app/source/with_toc_data.html.markdown
1781
- - fixtures/markdown-frontmatter-options-app/config.rb
1782
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown
1783
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown
1784
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown
1785
- - fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown
1786
- - fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown
1787
- - fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown
1788
- - fixtures/markdown-in-haml-app/config.rb
1789
- - fixtures/markdown-in-haml-app/source/images/blank.gif
1790
- - fixtures/markdown-in-haml-app/source/link_target.html.markdown
1791
- - fixtures/minify-css-app/source/inline-css.html.haml
1792
- - fixtures/minify-css-app/source/more-css/site.css
1793
- - fixtures/minify-css-app/source/stylesheets/report.css
1794
- - fixtures/minify-css-app/source/stylesheets/site.css.sass
1795
- - fixtures/minify-js-app/config.rb
1796
- - fixtures/minify-js-app/source/inline-coffeescript.html.haml
1797
- - fixtures/minify-js-app/source/inline-js.html.haml
1798
- - fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee
1799
- - fixtures/minify-js-app/source/javascripts/js_test.js
1800
- - fixtures/minify-js-app/source/more-js/other.js
1801
- - fixtures/missing-tilt-library-app/config.rb
1802
- - fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki
1803
- - fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki
1804
- - fixtures/missing-tilt-library-app/source/textile-source.html.textile
1805
- - fixtures/missing-tilt-library-app/source/wiki-source.html.wiki
1806
- - fixtures/more-extensionless-text-files-app/config.rb
1807
- - fixtures/more-extensionless-text-files-app/source/CNAME
1808
- - fixtures/more-extensionless-text-files-app/source/LICENSE
1809
- - fixtures/more-extensionless-text-files-app/source/README
1810
- - fixtures/more-extensionless-text-files-app/source/index.html
1811
- - fixtures/more-frontmatter-settings-app/config.rb
1812
- - fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb
1813
- - fixtures/more-frontmatter-settings-app/source/ignored.html.erb
1814
- - fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb
1815
- - fixtures/more-frontmatter-settings-app/source/no_index.html.erb
1816
- - fixtures/more-ignore-app/source/about.html.erb
1817
- - fixtures/more-ignore-app/source/images/icon/messages.png
1818
- - fixtures/more-ignore-app/source/images/pic.png
1819
- - fixtures/more-ignore-app/source/images/portrait.jpg
1820
- - fixtures/more-ignore-app/source/index.html.erb
1821
- - fixtures/more-ignore-app/source/plain.html
1822
- - fixtures/more-ignore-app/source/reports/another.html
1823
- - fixtures/more-ignore-app/source/reports/index.html
1824
- - fixtures/more-implied-extensions-app/config.rb
1825
- - fixtures/more-implied-extensions-app/source/javascripts/app.coffee
1826
- - fixtures/more-implied-extensions-app/source/stylesheets/style.scss
1827
- - fixtures/more-implied-extensions-app/source/stylesheets/style2.sass
1828
- - fixtures/more-implied-extensions-app/source/stylesheets/style3.less
1829
- - fixtures/more-implied-extensions-app/source/test.haml
1830
- - fixtures/more-implied-extensions-app/source/test2.markdown
1831
- - fixtures/more-implied-extensions-app/source/test3.slim
1832
- - fixtures/more-implied-extensions-app/source/test4.liquid
1833
- - fixtures/more-instance-vars-app/config.rb
1834
- - fixtures/more-instance-vars-app/source/_vartial.erb
1835
- - fixtures/more-instance-vars-app/source/instance-var-set.html.erb
1836
- - fixtures/more-instance-vars-app/source/layout.erb
1837
- - fixtures/more-instance-vars-app/source/no-instance-var.html.erb
1838
- - fixtures/more-markdown-app/source/layouts/layout.erb
1839
- - fixtures/more-markdown-app/source/with_layout.markdown
1840
- - fixtures/more-markdown-app/source/with_layout_erb.markdown.erb
1841
- - fixtures/more-preview-app/config.rb
1842
- - fixtures/more-preview-app/source/content.html.erb
1843
- - fixtures/more-preview-app/source/layout.erb
1844
- - fixtures/more-preview-app/source/stylesheets/_partial.sass
1845
- - fixtures/more-preview-app/source/stylesheets/_partial2.css.sass
1846
- - fixtures/more-preview-app/source/stylesheets/main.css.sass
1847
- - fixtures/more-preview-app/source/stylesheets/main2.css.sass
1848
- - fixtures/more-preview-app/source/stylesheets/plain.css.sass
1849
- - fixtures/more-traversal-app/config.rb
1850
- - fixtures/more-traversal-app/source/directory-indexed.html.erb
1851
- - fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb
1852
- - fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb
1853
- - fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb
1854
- - fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb
1855
- - fixtures/more-traversal-app/source/index.html.erb
1856
- - fixtures/more-traversal-app/source/layout.erb
1857
- - fixtures/more-traversal-app/source/proxied.html.erb
1858
- - fixtures/more-traversal-app/source/root.html.erb
1859
- - fixtures/more-traversal-app/source/sub/index.html.erb
1860
- - fixtures/more-traversal-app/source/sub/sibling.html.erb
1861
- - fixtures/more-traversal-app/source/sub/sibling2.html.erb
1862
- - fixtures/more-traversal-app/source/sub/sub2/index.html.erb
1863
- - fixtures/more-traversal-app/source/sub/sub3/deep.html.erb
1864
- - fixtures/multiple-layouts/config.rb
1865
- - fixtures/multiple-layouts/source/index.html.erb
1866
- - fixtures/multiple-layouts/source/layout.erb
1867
- - fixtures/multiple-layouts/source/layout.str
1868
- - fixtures/nested-data-app/config.rb
1869
- - fixtures/nested-data-app/data/examples/deeper/stuff.yml
1870
- - fixtures/nested-data-app/data/examples/more.yml
1871
- - fixtures/nested-data-app/data/examples/test.yml
1872
- - fixtures/nested-data-app/source/test.html.erb
1873
- - fixtures/nested-layout-app/config.rb
1874
- - fixtures/nested-layout-app/source/another.html.markdown
1875
- - fixtures/nested-layout-app/source/data-one.html.erb
1876
- - fixtures/nested-layout-app/source/data-two.html.erb
1877
- - fixtures/nested-layout-app/source/haml-test.html.markdown
1878
- - fixtures/nested-layout-app/source/index.html.erb
1879
- - fixtures/nested-layout-app/source/layouts/inner.erb
1880
- - fixtures/nested-layout-app/source/layouts/inner_haml.haml
1881
- - fixtures/nested-layout-app/source/layouts/inner_slim.slim
1882
- - fixtures/nested-layout-app/source/layouts/master.erb
1883
- - fixtures/nested-layout-app/source/layouts/master_haml.haml
1884
- - fixtures/nested-layout-app/source/layouts/master_slim.slim
1885
- - fixtures/nested-layout-app/source/layouts/outer.erb
1886
- - fixtures/nested-layout-app/source/layouts/outer_haml.haml
1887
- - fixtures/nested-layout-app/source/layouts/outer_slim.slim
1888
- - fixtures/nested-layout-app/source/slim-test.html.markdown
1889
- - fixtures/no-layout/config.rb
1890
- - fixtures/no-layout/source/index.html.erb
1891
- - fixtures/padrino-helpers-app/config.rb
1892
- - fixtures/padrino-helpers-app/source/former_padrino_test.html.erb
1893
- - fixtures/page-classes-app/config.rb
1894
- - fixtures/page-classes-app/source/page-classes.html.erb
1895
- - fixtures/page-classes-app/source/sub1/page-classes.html.erb
1896
- - fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb
1897
- - fixtures/page-helper-layout-block-app/config.rb
1898
- - fixtures/page-helper-layout-block-app/source/index.html.erb
1899
- - fixtures/page-helper-layout-block-app/source/layouts/alt.erb
1900
- - fixtures/page-helper-layout-block-app/source/layouts/layout.erb
1901
- - fixtures/page-helper-layout-block-app/source/path/child.html.erb
1902
- - fixtures/page-helper-layout-block-app/source/path/index.html.erb
1903
- - fixtures/partials-app/config.rb
1904
- - fixtures/partials-app/source/_locals.erb
1905
- - fixtures/partials-app/source/_main.erb
1906
- - fixtures/partials-app/source/_main.str
1907
- - fixtures/partials-app/source/index.html.erb
1908
- - fixtures/partials-app/source/locals.html.erb
1909
- - fixtures/partials-app/source/second.html.str
1910
- - fixtures/partials-app/source/shared/_footer.erb
1911
- - fixtures/partials-app/source/shared/_header.erb
1912
- - fixtures/partials-app/source/shared/snippet.erb
1913
- - fixtures/partials-app/source/sub/_local.erb
1914
- - fixtures/partials-app/source/sub/index.html.erb
1915
- - fixtures/partials-app/source/using_snippet.html.erb
1916
- - fixtures/partials-dir-app/source/index.html.erb
1917
- - fixtures/partials-dir-app/source/nested/partials/_partial.html.erb
1918
- - fixtures/partials-dir-app/source/partials/_partial.html.erb
1919
- - fixtures/passthrough-app/source/.htaccess
1920
- - fixtures/passthrough-app/source/inline-coffeescript.html.haml
1921
- - fixtures/passthrough-app/source/inline-css.html.haml
1922
- - fixtures/passthrough-app/source/inline-js.html.haml
1923
- - fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee
1924
- - fixtures/passthrough-app/source/javascripts/js_test.js
1925
- - fixtures/passthrough-app/source/stylesheets/site.css.sass
1926
- - fixtures/plain-app/index.html
1927
- - fixtures/preview-app/config.rb
1928
- - fixtures/preview-app/source/content.html.erb
1929
- - fixtures/preview-app/source/layout.erb
1930
- - fixtures/proxy-pages-app/config.rb
1931
- - fixtures/proxy-pages-app/source/real.html
1932
- - fixtures/proxy-pages-app/source/real/index-ivars.html.erb
1933
- - fixtures/proxy-pages-app/source/real/index.html.erb
1934
- - fixtures/proxy-pages-app/source/should_be_ignored3.html
1935
- - fixtures/proxy-pages-app/source/should_be_ignored6.html
1936
- - fixtures/proxy-pages-app/source/should_be_ignored7.html
1937
- - fixtures/proxy-pages-app/source/should_be_ignored8.html
1938
- - fixtures/queryable-app/config.rb
1939
- - fixtures/queryable-app/source/2010-08-08-test-document-file.html.markdown
1940
- - fixtures/queryable-app/source/2010-08-09-another-test-document.html.markdown
1941
- - fixtures/queryable-app/source/2011-12-26-some-test-document.html.markdown
1942
- - fixtures/queryable-app/source/document_with_date_in_yaml.html.markdown
1943
- - fixtures/queryable-app/source/document_without_date.html.markdown
1944
- - fixtures/relative-app/config.rb
1945
- - fixtures/relative-app/source/images/blank.gif
1946
- - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
1947
- - fixtures/relative-assets-app/config.rb
1948
- - fixtures/relative-assets-app/source/images/blank.gif
1949
- - fixtures/relative-assets-app/source/img/blank.gif
1950
- - fixtures/relative-assets-app/source/relative_image.html.erb
1951
- - fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass
1952
- - fixtures/request-app/config.rb
1953
- - fixtures/request-app/source/index.html.erb
1954
- - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass
1955
- - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss
1956
- - fixtures/sass-assets-path-app/config.rb
1957
- - fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass
1958
- - fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass
1959
- - fixtures/sass-cache-path-custom-app/config.rb
1960
- - fixtures/sass-cache-path-custom-app/source/stylesheets/plain.css.sass
1961
- - fixtures/sass-cache-path-default-app/config.rb
1962
- - fixtures/sass-cache-path-default-app/source/stylesheets/plain.css.sass
1963
- - fixtures/scss-app/config.rb
1964
- - fixtures/scss-app/source/stylesheets/layout.css.sass
1965
- - fixtures/scss-app/source/stylesheets/site_scss.css.scss
1966
- - fixtures/sinatra-app/config.rb
1967
- - fixtures/sinatra-app/source/index.html.erb
1968
- - fixtures/strip-url-app/config.rb
1969
- - fixtures/strip-url-app/source/index.html.erb
1970
- - fixtures/strip-url-app/source/other.html.erb
1971
- - fixtures/strip-url-app/source/subdir/index.html.erb
1972
- - fixtures/stylus-preview-app/config.rb
1973
- - fixtures/stylus-preview-app/source/content.html.erb
1974
- - fixtures/stylus-preview-app/source/layout.erb
1975
- - fixtures/stylus-preview-app/source/stylesheets/_partial.styl
1976
- - fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl
1977
- - fixtures/stylus-preview-app/source/stylesheets/main.css.styl
1978
- - fixtures/stylus-preview-app/source/stylesheets/main2.css.styl
1979
- - fixtures/stylus-preview-app/source/stylesheets/plain.css.styl
1980
- - fixtures/traversal-app/config.rb
1981
- - fixtures/traversal-app/source/directory-indexed.html.erb
1982
- - fixtures/traversal-app/source/directory-indexed/sibling.html.erb
1983
- - fixtures/traversal-app/source/directory-indexed/sibling2.html.erb
1984
- - fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb
1985
- - fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb
1986
- - fixtures/traversal-app/source/index.html.erb
1987
- - fixtures/traversal-app/source/layout.erb
1988
- - fixtures/traversal-app/source/proxied.html.erb
1989
- - fixtures/traversal-app/source/root.html.erb
1990
- - fixtures/traversal-app/source/sub/index.html.erb
1991
- - fixtures/traversal-app/source/sub/sibling.html.erb
1992
- - fixtures/traversal-app/source/sub/sibling2.html.erb
1993
- - fixtures/traversal-app/source/sub/sub2/index.html.erb
1994
- - fixtures/traversal-app/source/sub/sub3/deep.html.erb
1995
- - fixtures/twitter-bootstrap-app/config.rb
1996
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.gitignore
1997
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.travis.yml
1998
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/LICENSE
1999
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/README.md
2000
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings-white.png
2001
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings.png
2002
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/.jshintrc
2003
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/README.md
2004
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-alert.js
2005
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-button.js
2006
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-carousel.js
2007
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-collapse.js
2008
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-dropdown.js
2009
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-modal.js
2010
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-popover.js
2011
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-scrollspy.js
2012
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tab.js
2013
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tooltip.js
2014
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-transition.js
2015
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-typeahead.js
2016
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/index.html
2017
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/phantom.js
2018
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/server.js
2019
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-alert.js
2020
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-button.js
2021
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-carousel.js
2022
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-collapse.js
2023
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-dropdown.js
2024
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-modal.js
2025
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-phantom.js
2026
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-popover.js
2027
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-scrollspy.js
2028
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tab.js
2029
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tooltip.js
2030
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-transition.js
2031
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-typeahead.js
2032
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/jquery.js
2033
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.css
2034
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.js
2035
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_accordion.less
2036
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_alerts.less
2037
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_breadcrumbs.less
2038
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_button-groups.less
2039
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_buttons.less
2040
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_carousel.less
2041
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_close.less
2042
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_code.less
2043
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less
2044
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_dropdowns.less
2045
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_forms.less
2046
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_grid.less
2047
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_hero-unit.less
2048
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_labels-badges.less
2049
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_layouts.less
2050
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_mixins.less
2051
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_modals.less
2052
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navbar.less
2053
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navs.less
2054
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pager.less
2055
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pagination.less
2056
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_popovers.less
2057
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_progress-bars.less
2058
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_reset.less
2059
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-1200px-min.less
2060
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-767px-max.less
2061
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-768px-979px.less
2062
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-navbar.less
2063
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-utilities.less
2064
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_scaffolding.less
2065
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_sprites.less
2066
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tables.less
2067
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_thumbnails.less
2068
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tooltip.less
2069
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_type.less
2070
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less
2071
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_variables.less
2072
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_wells.less
2073
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/bootstrap.less
2074
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/responsive.less
2075
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.css
2076
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.html
2077
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html
2078
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html
2079
- - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json
2080
- - fixtures/v4-extension-callbacks/config.rb
2081
- - fixtures/v4-extension-callbacks/source/index.html.erb
2082
- - fixtures/wildcard-app/config.rb
2083
- - fixtures/wildcard-app/source/admin/index.html.erb
2084
- - fixtures/wildcard-app/source/admin/page.html.erb
2085
- - fixtures/wildcard-app/source/index.html.erb
2086
- - fixtures/wildcard-app/source/layouts/admin.erb
2087
- - fixtures/wildcard-app/source/layouts/layout.erb
2088
- - fixtures/wildcard-directory-index-app/config.rb
2089
- - fixtures/wildcard-directory-index-app/source/admin/index.html.erb
2090
- - fixtures/wildcard-directory-index-app/source/admin/page.html.erb
2091
- - fixtures/wildcard-directory-index-app/source/index.html.erb
2092
- - fixtures/wildcard-directory-index-app/source/layouts/admin.erb
2093
- - fixtures/wildcard-directory-index-app/source/layouts/layout.erb
1368
+ test_files: []
2094
1369
  has_rdoc:
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 25781ccd8de535b9b6789b101762fa1dc753ae58
4
- data.tar.gz: 0be523cddc28bbb739c6b2afb37221fe9afd53b1
5
- SHA512:
6
- metadata.gz: 9f2a22f4e27d44ee57fb3ad1a690736dd2bb626073e1ce69462bf687fa9048afdaac3ff571f28114e60c6ed307e7d355d244ad94e81cbc78104f7daccc76dfdb
7
- data.tar.gz: bcffd4386d2100d62175e025a2bc236d90865e45666a46cdb856a60501f5a9f25779aee651ff7803d78befe3ac5f5aab5f2935c38fdc2425195395031dbc44a7