jekyll 2.0.0.alpha.2 → 2.0.0.alpha.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jekyll might be problematic. Click here for more details.

Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/History.markdown +35 -0
  3. data/Rakefile +1 -1
  4. data/features/collections.feature +38 -0
  5. data/features/create_sites.feature +17 -0
  6. data/features/step_definitions/jekyll_steps.rb +15 -7
  7. data/features/support/env.rb +6 -1
  8. data/lib/jekyll.rb +6 -1
  9. data/lib/jekyll/cleaner.rb +5 -3
  10. data/lib/jekyll/collection.rb +121 -0
  11. data/lib/jekyll/command.rb +2 -0
  12. data/lib/jekyll/commands/build.rb +5 -1
  13. data/lib/jekyll/commands/serve.rb +1 -1
  14. data/lib/jekyll/configuration.rb +2 -0
  15. data/lib/jekyll/converters/markdown/redcarpet_parser.rb +11 -12
  16. data/lib/jekyll/convertible.rb +1 -1
  17. data/lib/jekyll/document.rb +228 -0
  18. data/lib/jekyll/entry_filter.rb +4 -1
  19. data/lib/jekyll/layout_reader.rb +1 -1
  20. data/lib/jekyll/page.rb +1 -1
  21. data/lib/jekyll/plugin_manager.rb +76 -0
  22. data/lib/jekyll/post.rb +3 -3
  23. data/lib/jekyll/publisher.rb +21 -0
  24. data/lib/jekyll/renderer.rb +132 -0
  25. data/lib/jekyll/site.rb +84 -68
  26. data/lib/jekyll/tags/highlight.rb +8 -6
  27. data/lib/jekyll/url.rb +43 -3
  28. data/lib/jekyll/version.rb +1 -1
  29. data/lib/site_template/_includes/head.html +3 -3
  30. data/script/console +38 -0
  31. data/site/_config.yml +1 -0
  32. data/site/_data/docs.yml +1 -0
  33. data/site/_includes/css/style.css +12 -12
  34. data/site/_includes/news_item.html +3 -3
  35. data/site/_includes/primary-nav-items.html +4 -1
  36. data/site/_includes/top.html +7 -3
  37. data/site/_layouts/news_item.html +3 -3
  38. data/site/_posts/2014-03-27-jekyll-1-5-1-released.markdown +26 -0
  39. data/site/docs/collections.md +126 -0
  40. data/site/docs/configuration.md +3 -2
  41. data/site/docs/datafiles.md +1 -1
  42. data/site/docs/history.md +6 -0
  43. data/site/docs/plugins.md +1 -1
  44. data/site/docs/troubleshooting.md +7 -3
  45. data/site/docs/variables.md +1 -1
  46. data/site/favicon.ico +0 -0
  47. data/site/feed.xml +27 -14
  48. data/site/img/logo-rss.png +0 -0
  49. data/site/js/html5shiv.js +8 -0
  50. data/site/js/respond.min.js +5 -0
  51. data/test/source/+/%# +.md +6 -0
  52. data/test/source/_methods/_do_not_read_me.md +5 -0
  53. data/test/source/_methods/configuration.md +8 -0
  54. data/test/source/_methods/sanitized_path.md +5 -0
  55. data/test/source/_methods/site/_dont_include_me_either.md +5 -0
  56. data/test/source/_methods/site/generate.md +6 -0
  57. data/test/source/_methods/site/initialize.md +5 -0
  58. data/test/source/_methods/um_hi.md +6 -0
  59. data/test/source/_posts/2014-03-03-yaml-with-dots.md +5 -0
  60. data/test/source/_posts/2014-03-22-escape-+ %20[].markdown +6 -0
  61. data/test/source/pgp.key +2 -0
  62. data/test/test_coffeescript.rb +1 -1
  63. data/test/test_collections.rb +129 -0
  64. data/test/test_command.rb +17 -0
  65. data/test/test_document.rb +48 -0
  66. data/test/test_filters.rb +1 -1
  67. data/test/test_generated_site.rb +5 -4
  68. data/test/test_new_command.rb +4 -4
  69. data/test/test_page.rb +22 -8
  70. data/test/test_path_sanitization.rb +4 -0
  71. data/test/test_post.rb +42 -13
  72. data/test/test_site.rb +11 -17
  73. data/test/test_tags.rb +10 -6
  74. metadata +42 -7
  75. data/lib/site_template/_posts/0000-00-00-this-post-demonstrates-post-content-styles.md +0 -88
  76. data/site/favicon.png +0 -0
  77. data/site/img/tube.png +0 -0
  78. data/site/img/tube1x.png +0 -0
  79. data/site/js/modernizr-2.7.1.min.js +0 -4
@@ -125,7 +125,7 @@ class TestFilters < Test::Unit::TestCase
125
125
  case g["name"]
126
126
  when "default"
127
127
  assert g["items"].is_a?(Array), "The list of grouped items for 'default' is not an Array."
128
- assert_equal 4, g["items"].size
128
+ assert_equal 5, g["items"].size
129
129
  when "nil"
130
130
  assert g["items"].is_a?(Array), "The list of grouped items for 'nil' is not an Array."
131
131
  assert_equal 2, g["items"].size
@@ -14,7 +14,7 @@ class TestGeneratedSite < Test::Unit::TestCase
14
14
  end
15
15
 
16
16
  should "ensure post count is as expected" do
17
- assert_equal 39, @site.posts.size
17
+ assert_equal 41, @site.posts.size
18
18
  end
19
19
 
20
20
  should "insert site.posts into the index" do
@@ -33,7 +33,7 @@ class TestGeneratedSite < Test::Unit::TestCase
33
33
  end
34
34
 
35
35
  should "hide unpublished page" do
36
- assert !File.exists?(dest_dir('/unpublished.html'))
36
+ assert !File.exist?(dest_dir('/unpublished.html'))
37
37
  end
38
38
 
39
39
  should "not copy _posts directory" do
@@ -41,13 +41,14 @@ class TestGeneratedSite < Test::Unit::TestCase
41
41
  end
42
42
 
43
43
  should "process other static files and generate correct permalinks" do
44
- assert File.exists?(dest_dir('/about/index.html'))
45
- assert File.exists?(dest_dir('/contacts.html'))
44
+ assert File.exist?(dest_dir('/about/index.html'))
45
+ assert File.exist?(dest_dir('/contacts.html'))
46
46
  end
47
47
 
48
48
  should "print a nice list of static files" do
49
49
  expected_output = Regexp.new <<-OUTPUT
50
50
  - /css/screen.css last edited at \\d+ with extname .css
51
+ - /pgp.key last edited at \\d+ with extname .key
51
52
  - /products.yml last edited at \\d+ with extname .yml
52
53
  - /symlink-test/symlinked-dir/screen.css last edited at \\d+ with extname .css
53
54
  OUTPUT
@@ -24,9 +24,9 @@ class TestNewCommand < Test::Unit::TestCase
24
24
  end
25
25
 
26
26
  should 'create a new directory' do
27
- assert !File.exists?(@full_path)
27
+ assert !File.exist?(@full_path)
28
28
  capture_stdout { Jekyll::Commands::New.process(@args) }
29
- assert File.exists?(@full_path)
29
+ assert File.exist?(@full_path)
30
30
  end
31
31
 
32
32
  should 'display a success message' do
@@ -83,9 +83,9 @@ class TestNewCommand < Test::Unit::TestCase
83
83
  end
84
84
 
85
85
  should 'create a new directory' do
86
- assert !File.exists?(@site_name_with_spaces)
86
+ assert !File.exist?(@site_name_with_spaces)
87
87
  capture_stdout { Jekyll::Commands::New.process(@multiple_args) }
88
- assert File.exists?(@site_name_with_spaces)
88
+ assert File.exist?(@site_name_with_spaces)
89
89
  end
90
90
  end
91
91
 
@@ -30,6 +30,11 @@ class TestPage < Test::Unit::TestCase
30
30
  assert_equal false, @page.published?
31
31
  end
32
32
 
33
+ should "create url with non-alphabetic characters" do
34
+ @page = setup_page('+', '%# +.md')
35
+ assert_equal "/+/%25%23%20+.html", @page.url
36
+ end
37
+
33
38
  context "in a directory hierarchy" do
34
39
  should "create url based on filename" do
35
40
  @page = setup_page('/contacts', 'bar.html')
@@ -162,7 +167,7 @@ class TestPage < Test::Unit::TestCase
162
167
  page.write(dest_dir)
163
168
 
164
169
  assert File.directory?(dest_dir)
165
- assert File.exists?(File.join(dest_dir, 'contacts.html'))
170
+ assert File.exist?(File.join(dest_dir, 'contacts.html'))
166
171
  end
167
172
 
168
173
  should "write even when the folder name is plus and permalink has +" do
@@ -171,7 +176,16 @@ class TestPage < Test::Unit::TestCase
171
176
  page.write(dest_dir)
172
177
 
173
178
  assert File.directory?(dest_dir)
174
- assert File.exists?(File.join(dest_dir, '+', 'plus+in+url'))
179
+ assert File.exist?(File.join(dest_dir, '+', 'plus+in+url'))
180
+ end
181
+
182
+ should "write even when permalink has '%# +'" do
183
+ page = setup_page('+', '%# +.md')
184
+ do_render(page)
185
+ page.write(dest_dir)
186
+
187
+ assert File.directory?(dest_dir)
188
+ assert File.exist?(File.join(dest_dir, '+', '%# +.html'))
175
189
  end
176
190
 
177
191
  should "write properly without html extension" do
@@ -181,7 +195,7 @@ class TestPage < Test::Unit::TestCase
181
195
  page.write(dest_dir)
182
196
 
183
197
  assert File.directory?(dest_dir)
184
- assert File.exists?(File.join(dest_dir, 'contacts', 'index.html'))
198
+ assert File.exist?(File.join(dest_dir, 'contacts', 'index.html'))
185
199
  end
186
200
 
187
201
  should "write properly with extension different from html" do
@@ -193,7 +207,7 @@ class TestPage < Test::Unit::TestCase
193
207
  assert_equal("/sitemap.xml", page.url)
194
208
  assert_nil(page.url[/\.html$/])
195
209
  assert File.directory?(dest_dir)
196
- assert File.exists?(File.join(dest_dir,'sitemap.xml'))
210
+ assert File.exist?(File.join(dest_dir,'sitemap.xml'))
197
211
  end
198
212
 
199
213
  should "write dotfiles properly" do
@@ -202,7 +216,7 @@ class TestPage < Test::Unit::TestCase
202
216
  page.write(dest_dir)
203
217
 
204
218
  assert File.directory?(dest_dir)
205
- assert File.exists?(File.join(dest_dir, '.htaccess'))
219
+ assert File.exist?(File.join(dest_dir, '.htaccess'))
206
220
  end
207
221
 
208
222
  context "in a directory hierarchy" do
@@ -212,7 +226,7 @@ class TestPage < Test::Unit::TestCase
212
226
  page.write(dest_dir)
213
227
 
214
228
  assert File.directory?(dest_dir)
215
- assert File.exists?(File.join(dest_dir, 'contacts', 'index.html'))
229
+ assert File.exist?(File.join(dest_dir, 'contacts', 'index.html'))
216
230
  end
217
231
 
218
232
  should "write properly" do
@@ -221,7 +235,7 @@ class TestPage < Test::Unit::TestCase
221
235
  page.write(dest_dir)
222
236
 
223
237
  assert File.directory?(dest_dir)
224
- assert File.exists?(File.join(dest_dir, 'contacts', 'bar.html'))
238
+ assert File.exist?(File.join(dest_dir, 'contacts', 'bar.html'))
225
239
  end
226
240
 
227
241
  should "write properly without html extension" do
@@ -231,7 +245,7 @@ class TestPage < Test::Unit::TestCase
231
245
  page.write(dest_dir)
232
246
 
233
247
  assert File.directory?(dest_dir)
234
- assert File.exists?(File.join(dest_dir, 'contacts', 'bar', 'index.html'))
248
+ assert File.exist?(File.join(dest_dir, 'contacts', 'bar', 'index.html'))
235
249
  end
236
250
  end
237
251
  end
@@ -10,5 +10,9 @@ class TestPathSanitization < Test::Unit::TestCase
10
10
  should "strip drive name from path" do
11
11
  assert_equal "C:/Users/xmr/Desktop/mpc-hc.org/_site", Jekyll.sanitized_path(@source, @dest)
12
12
  end
13
+
14
+ should "strip just the initial drive name" do
15
+ assert_equal "/tmp/foobar/jail/..c:/..c:/..c:/etc/passwd", Jekyll.sanitized_path("/tmp/foobar/jail", "..c:/..c:/..c:/etc/passwd")
16
+ end
13
17
  end
14
18
  end
@@ -86,13 +86,20 @@ class TestPost < Test::Unit::TestCase
86
86
  end
87
87
  end
88
88
 
89
- should "CGI escape urls" do
89
+ should "escape urls" do
90
90
  @post.categories = []
91
91
  @post.process("2009-03-12-hash-#1.markdown")
92
92
  assert_equal "/2009/03/12/hash-%231.html", @post.url
93
93
  assert_equal "/2009/03/12/hash-#1", @post.id
94
94
  end
95
95
 
96
+ should "escape urls with non-alphabetic characters" do
97
+ @post.categories = []
98
+ @post.process("2014-03-22-escape-+ %20[].markdown")
99
+ assert_equal "/2014/03/22/escape-+%20%2520%5B%5D.html", @post.url
100
+ assert_equal "/2014/03/22/escape-+ %20[]", @post.id
101
+ end
102
+
96
103
  should "respect permalink in yaml front matter" do
97
104
  file = "2008-12-03-permalinked-post.textile"
98
105
  @post.process(file)
@@ -127,6 +134,18 @@ class TestPost < Test::Unit::TestCase
127
134
  end
128
135
  end
129
136
 
137
+ context "with three dots ending YAML header" do
138
+ setup do
139
+ @real_file = "2014-03-03-yaml-with-dots.md"
140
+ end
141
+ should "should read the YAML header" do
142
+ @post.read_yaml(@source, @real_file)
143
+
144
+ assert_equal({"title" => "Test Post Where YAML Ends in Dots"},
145
+ @post.data)
146
+ end
147
+ end
148
+
130
149
  context "with embedded triple dash" do
131
150
  setup do
132
151
  @real_file = "2010-01-08-triple-dash.markdown"
@@ -396,16 +415,6 @@ class TestPost < Test::Unit::TestCase
396
415
  end
397
416
 
398
417
  context "initializing posts" do
399
- should "publish when published yaml is no specified" do
400
- post = setup_post("2008-02-02-published.textile")
401
- assert_equal true, post.published?
402
- end
403
-
404
- should "not published when published yaml is false" do
405
- post = setup_post("2008-02-02-not-published.textile")
406
- assert_equal false, post.published?
407
- end
408
-
409
418
  should "recognize date in yaml" do
410
419
  post = setup_post("2010-01-09-date-override.textile")
411
420
  do_render(post)
@@ -518,7 +527,27 @@ class TestPost < Test::Unit::TestCase
518
527
  post.write(dest_dir)
519
528
 
520
529
  assert File.directory?(dest_dir)
521
- assert File.exists?(File.join(dest_dir, '2008', '10', '18', 'foo-bar.html'))
530
+ assert File.exist?(File.join(dest_dir, '2008', '10', '18', 'foo-bar.html'))
531
+ end
532
+
533
+ should "write properly when url has hash" do
534
+ post = setup_post("2009-03-12-hash-#1.markdown")
535
+ do_render(post)
536
+ post.write(dest_dir)
537
+
538
+ assert File.directory?(dest_dir)
539
+ assert File.exist?(File.join(dest_dir, '2009', '03', '12',
540
+ 'hash-#1.html'))
541
+ end
542
+
543
+ should "write properly when url has space" do
544
+ post = setup_post("2014-03-22-escape-+ %20[].markdown")
545
+ do_render(post)
546
+ post.write(dest_dir)
547
+
548
+ assert File.directory?(dest_dir)
549
+ assert File.exist?(File.join(dest_dir, '2014', '03', '22',
550
+ 'escape-+ %20[].html'))
522
551
  end
523
552
 
524
553
  should "write properly without html extension" do
@@ -528,7 +557,7 @@ class TestPost < Test::Unit::TestCase
528
557
  post.write(dest_dir)
529
558
 
530
559
  assert File.directory?(dest_dir)
531
- assert File.exists?(File.join(dest_dir, 'foo-bar', 'index.html'))
560
+ assert File.exist?(File.join(dest_dir, 'foo-bar', 'index.html'))
532
561
  end
533
562
 
534
563
  should "insert data" do
@@ -159,6 +159,7 @@ class TestSite < Test::Unit::TestCase
159
159
  @site.process
160
160
  # files in symlinked directories may appear twice
161
161
  sorted_pages = %w(
162
+ %#\ +.md
162
163
  .htaccess
163
164
  about.html
164
165
  bar.html
@@ -186,6 +187,16 @@ class TestSite < Test::Unit::TestCase
186
187
  assert_equal posts.size - @num_invalid_posts, @site.posts.size
187
188
  end
188
189
 
190
+ should "read pages with yaml front matter" do
191
+ abs_path = File.expand_path("about.html", @site.source)
192
+ assert_equal true, @site.send(:has_yaml_header?, abs_path)
193
+ end
194
+
195
+ should "enforce a strict 3-dash limit on the start of the YAML front-matter" do
196
+ abs_path = File.expand_path("pgp.key", @site.source)
197
+ assert_equal false, @site.send(:has_yaml_header?, abs_path)
198
+ end
199
+
189
200
  should "expose jekyll version to site payload" do
190
201
  assert_equal Jekyll::VERSION, @site.site_payload['jekyll']['version']
191
202
  end
@@ -385,23 +396,6 @@ class TestSite < Test::Unit::TestCase
385
396
  assert_nil site.site_payload['site']['data']['products']
386
397
  end
387
398
 
388
- should "load symlink directory in unsafe mode" do
389
- site = Site.new(Jekyll.configuration.merge({'safe' => false, 'data_source' => File.join('symlink-test', '_data')}))
390
- site.process
391
-
392
- assert_not_nil site.data['products']
393
- assert_not_nil site.data['languages']
394
- assert_not_nil site.data['members']
395
- end
396
-
397
- should "not load symlink directory in safe mode" do
398
- site = Site.new(Jekyll.configuration.merge({'safe' => true, 'data_source' => File.join('symlink-test', '_data')}))
399
- site.process
400
-
401
- assert_nil site.data['products']
402
- assert_nil site.data['languages']
403
- assert_nil site.data['members']
404
- end
405
399
  end
406
400
  end
407
401
  end
@@ -33,8 +33,12 @@ title: This is a test
33
33
 
34
34
  This document results in a markdown error with maruku
35
35
 
36
- {% highlight text %}#{code}{% endhighlight %}
37
- {% highlight text linenos %}#{code}{% endhighlight %}
36
+ {% highlight text %}
37
+ #{code}
38
+ {% endhighlight %}
39
+ {% highlight text linenos %}
40
+ #{code}
41
+ {% endhighlight %}
38
42
  CONTENT
39
43
  create_post(content, override)
40
44
  end
@@ -87,11 +91,11 @@ CONTENT
87
91
  end
88
92
 
89
93
  should "render markdown with pygments" do
90
- assert_match %{<pre><code class="text">test\n</code></pre>}, @result
94
+ assert_match %{<pre><code class="text">test</code></pre>}, @result
91
95
  end
92
96
 
93
97
  should "render markdown with pygments with line numbers" do
94
- assert_match %{<pre><code class="text"><span class="lineno">1</span> test\n</code></pre>}, @result
98
+ assert_match %{<pre><code class="text"><span class="lineno">1</span> test</code></pre>}, @result
95
99
  end
96
100
  end
97
101
 
@@ -101,7 +105,7 @@ CONTENT
101
105
  end
102
106
 
103
107
  should "not embed the file" do
104
- assert_match %{<pre><code class="text">./jekyll.gemspec\n</code></pre>}, @result
108
+ assert_match %{<pre><code class="text">./jekyll.gemspec</code></pre>}, @result
105
109
  end
106
110
  end
107
111
 
@@ -111,7 +115,7 @@ CONTENT
111
115
  end
112
116
 
113
117
  should "render markdown with pygments line handling" do
114
- assert_match %{<pre><code class="text">Æ\n</code></pre>}, @result
118
+ assert_match %{<pre><code class="text">Æ</code></pre>}, @result
115
119
  end
116
120
  end
117
121
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.alpha.2
4
+ version: 2.0.0.alpha.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Preston-Werner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-26 00:00:00.000000000 Z
11
+ date: 2014-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: liquid
@@ -451,6 +451,7 @@ files:
451
451
  - cucumber.yml
452
452
  - docs/jp/CONTRIBUTING.jp.markdown
453
453
  - docs/jp/README.jp.markdown
454
+ - features/collections.feature
454
455
  - features/create_sites.feature
455
456
  - features/data.feature
456
457
  - features/drafts.feature
@@ -468,6 +469,7 @@ files:
468
469
  - jekyll.gemspec
469
470
  - lib/jekyll.rb
470
471
  - lib/jekyll/cleaner.rb
472
+ - lib/jekyll/collection.rb
471
473
  - lib/jekyll/command.rb
472
474
  - lib/jekyll/commands/build.rb
473
475
  - lib/jekyll/commands/docs.rb
@@ -485,6 +487,7 @@ files:
485
487
  - lib/jekyll/converters/textile.rb
486
488
  - lib/jekyll/convertible.rb
487
489
  - lib/jekyll/deprecator.rb
490
+ - lib/jekyll/document.rb
488
491
  - lib/jekyll/draft.rb
489
492
  - lib/jekyll/entry_filter.rb
490
493
  - lib/jekyll/errors.rb
@@ -497,8 +500,11 @@ files:
497
500
  - lib/jekyll/mime.types
498
501
  - lib/jekyll/page.rb
499
502
  - lib/jekyll/plugin.rb
503
+ - lib/jekyll/plugin_manager.rb
500
504
  - lib/jekyll/post.rb
505
+ - lib/jekyll/publisher.rb
501
506
  - lib/jekyll/related_posts.rb
507
+ - lib/jekyll/renderer.rb
502
508
  - lib/jekyll/site.rb
503
509
  - lib/jekyll/static_file.rb
504
510
  - lib/jekyll/stevenson.rb
@@ -517,7 +523,6 @@ files:
517
523
  - lib/site_template/_layouts/default.html
518
524
  - lib/site_template/_layouts/page.html
519
525
  - lib/site_template/_layouts/post.html
520
- - lib/site_template/_posts/0000-00-00-this-post-demonstrates-post-content-styles.md
521
526
  - lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb
522
527
  - lib/site_template/about/index.md
523
528
  - lib/site_template/css/main.css
@@ -527,6 +532,7 @@ files:
527
532
  - script/bootstrap
528
533
  - script/branding
529
534
  - script/cibuild
535
+ - script/console
530
536
  - script/rebund
531
537
  - site/.gitignore
532
538
  - site/CNAME
@@ -572,8 +578,10 @@ files:
572
578
  - site/_posts/2013-12-16-jekyll-1-4-2-released.markdown
573
579
  - site/_posts/2014-01-13-jekyll-1-4-3-released.markdown
574
580
  - site/_posts/2014-03-24-jekyll-1-5-0-released.markdown
581
+ - site/_posts/2014-03-27-jekyll-1-5-1-released.markdown
575
582
  - site/css/screen.css
576
583
  - site/docs/assets.md
584
+ - site/docs/collections.md
577
585
  - site/docs/configuration.md
578
586
  - site/docs/contributing.md
579
587
  - site/docs/datafiles.md
@@ -602,18 +610,18 @@ files:
602
610
  - site/docs/usage.md
603
611
  - site/docs/variables.md
604
612
  - site/docs/windows.md
605
- - site/favicon.png
613
+ - site/favicon.ico
606
614
  - site/feed.xml
607
615
  - site/freenode.txt
608
616
  - site/img/article-footer.png
609
617
  - site/img/footer-arrow.png
610
618
  - site/img/footer-logo.png
611
619
  - site/img/logo-2x.png
620
+ - site/img/logo-rss.png
612
621
  - site/img/octojekyll.png
613
- - site/img/tube.png
614
- - site/img/tube1x.png
615
622
  - site/index.html
616
- - site/js/modernizr-2.7.1.min.js
623
+ - site/js/html5shiv.js
624
+ - site/js/respond.min.js
617
625
  - site/news/index.html
618
626
  - site/news/releases/index.html
619
627
  - test/fixtures/broken_front_matter1.erb
@@ -622,6 +630,7 @@ files:
622
630
  - test/fixtures/exploit_front_matter.erb
623
631
  - test/fixtures/front_matter.erb
624
632
  - test/helper.rb
633
+ - test/source/+/%# +.md
625
634
  - test/source/+/foo.md
626
635
  - test/source/.htaccess
627
636
  - test/source/_config.dev.toml
@@ -635,6 +644,13 @@ files:
635
644
  - test/source/_layouts/default.html
636
645
  - test/source/_layouts/post/simple.html
637
646
  - test/source/_layouts/simple.html
647
+ - test/source/_methods/_do_not_read_me.md
648
+ - test/source/_methods/configuration.md
649
+ - test/source/_methods/sanitized_path.md
650
+ - test/source/_methods/site/_dont_include_me_either.md
651
+ - test/source/_methods/site/generate.md
652
+ - test/source/_methods/site/initialize.md
653
+ - test/source/_methods/um_hi.md
638
654
  - test/source/_plugins/dummy.rb
639
655
  - test/source/_posts/2008-02-02-not-published.textile
640
656
  - test/source/_posts/2008-02-02-published.textile
@@ -672,6 +688,8 @@ files:
672
688
  - test/source/_posts/2013-12-17-include-variable-filters.markdown
673
689
  - test/source/_posts/2013-12-20-properties.text
674
690
  - test/source/_posts/2014-01-06-permalink-traversal.md
691
+ - test/source/_posts/2014-03-03-yaml-with-dots.md
692
+ - test/source/_posts/2014-03-22-escape-+ %20[].markdown
675
693
  - test/source/_posts/es/2008-11-21-nested.textile
676
694
  - test/source/_sass/_grid.scss
677
695
  - test/source/about.html
@@ -686,6 +704,7 @@ files:
686
704
  - test/source/foo/_posts/bar/2008-12-12-topical-post.textile
687
705
  - test/source/index.html
688
706
  - test/source/js/coffeescript.coffee
707
+ - test/source/pgp.key
689
708
  - test/source/products.yml
690
709
  - test/source/properties.html
691
710
  - test/source/sitemap.xml
@@ -696,9 +715,11 @@ files:
696
715
  - test/source/z_category/_posts/2008-9-23-categories.textile
697
716
  - test/suite.rb
698
717
  - test/test_coffeescript.rb
718
+ - test/test_collections.rb
699
719
  - test/test_command.rb
700
720
  - test/test_configuration.rb
701
721
  - test/test_convertible.rb
722
+ - test/test_document.rb
702
723
  - test/test_draft.rb
703
724
  - test/test_entry_filter.rb
704
725
  - test/test_excerpt.rb
@@ -746,6 +767,7 @@ signing_key:
746
767
  specification_version: 2
747
768
  summary: A simple, blog aware, static site generator.
748
769
  test_files:
770
+ - features/collections.feature
749
771
  - features/create_sites.feature
750
772
  - features/data.feature
751
773
  - features/drafts.feature
@@ -766,6 +788,7 @@ test_files:
766
788
  - test/fixtures/exploit_front_matter.erb
767
789
  - test/fixtures/front_matter.erb
768
790
  - test/helper.rb
791
+ - test/source/+/%# +.md
769
792
  - test/source/+/foo.md
770
793
  - test/source/.htaccess
771
794
  - test/source/_config.dev.toml
@@ -779,6 +802,13 @@ test_files:
779
802
  - test/source/_layouts/default.html
780
803
  - test/source/_layouts/post/simple.html
781
804
  - test/source/_layouts/simple.html
805
+ - test/source/_methods/_do_not_read_me.md
806
+ - test/source/_methods/configuration.md
807
+ - test/source/_methods/sanitized_path.md
808
+ - test/source/_methods/site/_dont_include_me_either.md
809
+ - test/source/_methods/site/generate.md
810
+ - test/source/_methods/site/initialize.md
811
+ - test/source/_methods/um_hi.md
782
812
  - test/source/_plugins/dummy.rb
783
813
  - test/source/_posts/2008-02-02-not-published.textile
784
814
  - test/source/_posts/2008-02-02-published.textile
@@ -816,6 +846,8 @@ test_files:
816
846
  - test/source/_posts/2013-12-17-include-variable-filters.markdown
817
847
  - test/source/_posts/2013-12-20-properties.text
818
848
  - test/source/_posts/2014-01-06-permalink-traversal.md
849
+ - test/source/_posts/2014-03-03-yaml-with-dots.md
850
+ - test/source/_posts/2014-03-22-escape-+ %20[].markdown
819
851
  - test/source/_posts/es/2008-11-21-nested.textile
820
852
  - test/source/_sass/_grid.scss
821
853
  - test/source/about.html
@@ -830,6 +862,7 @@ test_files:
830
862
  - test/source/foo/_posts/bar/2008-12-12-topical-post.textile
831
863
  - test/source/index.html
832
864
  - test/source/js/coffeescript.coffee
865
+ - test/source/pgp.key
833
866
  - test/source/products.yml
834
867
  - test/source/properties.html
835
868
  - test/source/sitemap.xml
@@ -840,9 +873,11 @@ test_files:
840
873
  - test/source/z_category/_posts/2008-9-23-categories.textile
841
874
  - test/suite.rb
842
875
  - test/test_coffeescript.rb
876
+ - test/test_collections.rb
843
877
  - test/test_command.rb
844
878
  - test/test_configuration.rb
845
879
  - test/test_convertible.rb
880
+ - test/test_document.rb
846
881
  - test/test_draft.rb
847
882
  - test/test_entry_filter.rb
848
883
  - test/test_excerpt.rb