jekyll 2.0.0.alpha.1 → 2.0.0.alpha.2

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 (132) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +15 -0
  3. data/.travis.yml +27 -0
  4. data/History.markdown +66 -1
  5. data/LICENSE +2 -2
  6. data/README.markdown +2 -2
  7. data/Rakefile +4 -44
  8. data/bin/jekyll +10 -113
  9. data/docs/jp/CONTRIBUTING.jp.markdown +93 -0
  10. data/docs/jp/README.jp.markdown +69 -0
  11. data/features/create_sites.feature +12 -12
  12. data/features/drafts.feature +23 -2
  13. data/features/embed_filters.feature +7 -5
  14. data/features/include_tag.feature +7 -7
  15. data/features/markdown.feature +4 -4
  16. data/features/pagination.feature +2 -2
  17. data/features/permalinks.feature +7 -7
  18. data/features/post_data.feature +21 -21
  19. data/features/post_excerpts.feature +6 -6
  20. data/features/site_configuration.feature +17 -17
  21. data/features/site_data.feature +15 -15
  22. data/features/step_definitions/jekyll_steps.rb +4 -4
  23. data/features/support/env.rb +2 -2
  24. data/jekyll.gemspec +17 -284
  25. data/lib/jekyll.rb +21 -5
  26. data/lib/jekyll/command.rb +72 -20
  27. data/lib/jekyll/commands/build.rb +82 -58
  28. data/lib/jekyll/commands/docs.rb +30 -0
  29. data/lib/jekyll/commands/doctor.rb +18 -1
  30. data/lib/jekyll/commands/new.rb +19 -6
  31. data/lib/jekyll/commands/serve.rb +80 -49
  32. data/lib/jekyll/configuration.rb +3 -3
  33. data/lib/jekyll/converters/markdown/kramdown_parser.rb +1 -1
  34. data/lib/jekyll/converters/markdown/redcarpet_parser.rb +1 -0
  35. data/lib/jekyll/convertible.rb +19 -21
  36. data/lib/jekyll/draft.rb +5 -0
  37. data/lib/jekyll/excerpt.rb +5 -5
  38. data/lib/jekyll/layout.rb +2 -2
  39. data/lib/jekyll/layout_reader.rb +15 -2
  40. data/lib/jekyll/page.rb +17 -17
  41. data/lib/jekyll/post.rb +33 -33
  42. data/lib/jekyll/related_posts.rb +5 -5
  43. data/lib/jekyll/site.rb +84 -85
  44. data/lib/jekyll/static_file.rb +13 -0
  45. data/lib/jekyll/stevenson.rb +1 -1
  46. data/lib/jekyll/tags/highlight.rb +16 -6
  47. data/lib/jekyll/tags/include.rb +17 -17
  48. data/lib/jekyll/url.rb +2 -0
  49. data/lib/jekyll/utils.rb +79 -0
  50. data/lib/jekyll/version.rb +3 -0
  51. data/lib/site_template/_config.yml +3 -1
  52. data/lib/site_template/_includes/footer.html +61 -0
  53. data/lib/site_template/_includes/head.html +12 -0
  54. data/lib/site_template/_includes/header.html +27 -0
  55. data/lib/site_template/_layouts/default.html +9 -34
  56. data/lib/site_template/_layouts/page.html +14 -0
  57. data/lib/site_template/_layouts/post.html +11 -5
  58. data/lib/site_template/_posts/0000-00-00-this-post-demonstrates-post-content-styles.md +88 -0
  59. data/lib/site_template/about/index.md +10 -0
  60. data/lib/site_template/css/main.css +333 -100
  61. data/lib/site_template/feed.xml +21 -0
  62. data/lib/site_template/index.html +8 -4
  63. data/lib/site_template/projects/index.md +14 -0
  64. data/script/cibuild +0 -1
  65. data/script/rebund +1 -1
  66. data/site/_includes/analytics.html +2 -2
  67. data/site/_includes/css/normalize.css +1 -1
  68. data/site/_includes/css/style.css +28 -4
  69. data/site/_includes/docs_option.html +1 -1
  70. data/site/_includes/docs_ul.html +3 -3
  71. data/site/_includes/footer.html +1 -1
  72. data/site/_includes/header.html +2 -2
  73. data/site/_includes/news_item.html +1 -1
  74. data/site/_includes/primary-nav-items.html +4 -4
  75. data/site/_includes/section_nav.html +2 -2
  76. data/site/_includes/top.html +6 -7
  77. data/site/_layouts/news_item.html +1 -1
  78. data/site/_posts/2013-07-25-jekyll-1-0-4-released.markdown +1 -1
  79. data/site/_posts/2013-07-25-jekyll-1-1-2-released.markdown +1 -1
  80. data/site/_posts/2013-09-14-jekyll-1-2-1-released.markdown +1 -1
  81. data/site/_posts/2014-03-24-jekyll-1-5-0-released.markdown +19 -0
  82. data/site/docs/assets.md +14 -0
  83. data/site/docs/configuration.md +65 -56
  84. data/site/docs/contributing.md +7 -2
  85. data/site/docs/deployment-methods.md +1 -1
  86. data/site/docs/github-pages.md +1 -1
  87. data/site/docs/history.md +21 -0
  88. data/site/docs/index.md +7 -1
  89. data/site/docs/installation.md +28 -0
  90. data/site/docs/migrations.md +1 -1
  91. data/site/docs/plugins.md +6 -0
  92. data/site/docs/structure.md +3 -3
  93. data/site/docs/templates.md +44 -44
  94. data/site/docs/usage.md +1 -1
  95. data/site/docs/variables.md +15 -2
  96. data/site/favicon.png +0 -0
  97. data/site/feed.xml +0 -1
  98. data/site/img/article-footer.png +0 -0
  99. data/site/img/footer-arrow.png +0 -0
  100. data/site/img/footer-logo.png +0 -0
  101. data/site/img/logo-2x.png +0 -0
  102. data/site/img/octojekyll.png +0 -0
  103. data/site/img/tube.png +0 -0
  104. data/site/img/tube1x.png +0 -0
  105. data/site/index.html +5 -5
  106. data/site/js/modernizr-2.7.1.min.js +4 -0
  107. data/test/helper.rb +11 -0
  108. data/test/source/_drafts/draft-properties.text +11 -0
  109. data/test/source/_posts/2011-04-12-md-extension.md +1 -1
  110. data/test/source/_posts/2014-01-06-permalink-traversal.md +5 -0
  111. data/test/source/exploit.md +5 -0
  112. data/test/source/static_files.html +4 -0
  113. data/test/test_configuration.rb +2 -2
  114. data/test/test_draft.rb +56 -0
  115. data/test/test_excerpt.rb +2 -2
  116. data/test/test_filters.rb +1 -1
  117. data/test/test_generated_site.rb +10 -1
  118. data/test/test_kramdown.rb +1 -1
  119. data/test/test_layout_reader.rb +17 -0
  120. data/test/test_page.rb +10 -0
  121. data/test/test_pager.rb +4 -2
  122. data/test/test_path_sanitization.rb +14 -0
  123. data/test/test_post.rb +12 -1
  124. data/test/test_sass.rb +1 -64
  125. data/test/test_site.rb +26 -1
  126. data/test/test_tags.rb +39 -2
  127. data/test/{test_core_ext.rb → test_utils.rb} +12 -12
  128. metadata +200 -86
  129. data/lib/jekyll/converters/sass.rb +0 -58
  130. data/lib/jekyll/core_ext.rb +0 -55
  131. data/lib/site_template/css/syntax.css +0 -60
  132. data/site/js/modernizr-2.5.3.min.js +0 -4
@@ -9,8 +9,8 @@ Feature: Post excerpts
9
9
  Given I have an "index.html" page that contains "{% for post in site.posts %}{{ post.excerpt }}{% endfor %}"
10
10
  And I have a _posts directory
11
11
  And I have the following posts:
12
- | title | date | layout | content |
13
- | entry1 | 2007-12-31 | post | content for entry1. |
12
+ | title | date | layout | content |
13
+ | entry1 | 2007-12-31 | post | content for entry1. |
14
14
  When I run jekyll
15
15
  Then the _site directory should exist
16
16
  And I should see exactly "<p>content for entry1.</p>" in "_site/index.html"
@@ -21,8 +21,8 @@ Feature: Post excerpts
21
21
  And I have a _layouts directory
22
22
  And I have a post layout that contains "{{ page.excerpt }}"
23
23
  And I have the following posts:
24
- | title | date | layout | content |
25
- | entry1 | 2007-12-31 | post | content for entry1. |
24
+ | title | date | layout | content |
25
+ | entry1 | 2007-12-31 | post | content for entry1. |
26
26
  When I run jekyll
27
27
  Then the _site directory should exist
28
28
  And the _site/2007 directory should exist
@@ -38,8 +38,8 @@ Feature: Post excerpts
38
38
  And I have a _layouts directory
39
39
  And I have a post layout that contains "<html><head></head><body>{{ page.excerpt }}</body></html>"
40
40
  And I have the following posts:
41
- | title | date | layout | content |
42
- | entry1 | 2007-12-31 | post | content for entry1. |
41
+ | title | date | layout | content |
42
+ | entry1 | 2007-12-31 | post | content for entry1. |
43
43
  When I run jekyll
44
44
  Then the _site directory should exist
45
45
  And the _site/2007 directory should exist
@@ -116,9 +116,9 @@ Feature: Site configuration
116
116
  | future | false |
117
117
  And I have a _posts directory
118
118
  And I have the following posts:
119
- | title | date | layout | content |
120
- | entry1 | 2007-12-31 | post | content for entry1. |
121
- | entry2 | 2020-01-31 | post | content for entry2. |
119
+ | title | date | layout | content |
120
+ | entry1 | 2007-12-31 | post | content for entry1. |
121
+ | entry2 | 2020-01-31 | post | content for entry2. |
122
122
  When I run jekyll
123
123
  Then the _site directory should exist
124
124
  And I should see "Page Layout: 1 on 2010-01-01" in "_site/index.html"
@@ -136,9 +136,9 @@ Feature: Site configuration
136
136
  | future | true |
137
137
  And I have a _posts directory
138
138
  And I have the following posts:
139
- | title | date | layout | content |
140
- | entry1 | 2007-12-31 | post | content for entry1. |
141
- | entry2 | 2020-01-31 | post | content for entry2. |
139
+ | title | date | layout | content |
140
+ | entry1 | 2007-12-31 | post | content for entry1. |
141
+ | entry2 | 2020-01-31 | post | content for entry2. |
142
142
  When I run jekyll
143
143
  Then the _site directory should exist
144
144
  And I should see "Page Layout: 2 on 2010-01-01" in "_site/index.html"
@@ -191,10 +191,10 @@ Feature: Site configuration
191
191
  | key | value |
192
192
  | limit_posts | 2 |
193
193
  And I have the following posts:
194
- | title | date | content |
195
- | Apples | 2009-03-27 | An article about apples |
196
- | Oranges | 2009-04-01 | An article about oranges |
197
- | Bananas | 2009-04-05 | An article about bananas |
194
+ | title | date | content |
195
+ | Apples | 2009-03-27 | An article about apples |
196
+ | Oranges | 2009-04-01 | An article about oranges |
197
+ | Bananas | 2009-04-05 | An article about bananas |
198
198
  When I run jekyll
199
199
  Then the _site directory should exist
200
200
  And the "_site/2009/04/05/bananas.html" file should exist
@@ -225,9 +225,9 @@ Feature: Site configuration
225
225
  | layouts | _theme |
226
226
  And I have a _posts directory
227
227
  And I have the following posts:
228
- | title | date | layout | content |
229
- | entry1 | 2007-12-31 | post | content for entry1. |
230
- | entry2 | 2020-01-31 | post | content for entry2. |
228
+ | title | date | layout | content |
229
+ | entry1 | 2007-12-31 | post | content for entry1. |
230
+ | entry2 | 2020-01-31 | post | content for entry2. |
231
231
  When I run jekyll
232
232
  Then the _site directory should exist
233
233
  And I should see "Page Layout: 2 on 2010-01-01" in "_site/index.html"
@@ -245,9 +245,9 @@ Feature: Site configuration
245
245
  Scenario: Add an empty whitelist to restrict all gems
246
246
  Given I have an "index.html" file that contains "Whatever"
247
247
  And I have a configuration file with:
248
- | key | value |
248
+ | key | value |
249
249
  | gems | [jekyll_test_plugin] |
250
- | whitelist | [] |
250
+ | whitelist | [] |
251
251
  When I run jekyll in safe mode
252
252
  Then the _site directory should exist
253
253
  And I should see "Whatever" in "_site/index.html"
@@ -256,9 +256,9 @@ Feature: Site configuration
256
256
  Scenario: Add a whitelist to restrict some gems but allow others
257
257
  Given I have an "index.html" file that contains "Whatever"
258
258
  And I have a configuration file with:
259
- | key | value |
259
+ | key | value |
260
260
  | gems | [jekyll_test_plugin, jekyll_test_plugin_malicious] |
261
- | whitelist | [jekyll_test_plugin] |
261
+ | whitelist | [jekyll_test_plugin] |
262
262
  When I run jekyll in safe mode
263
263
  Then the _site directory should exist
264
264
  And I should see "Whatever" in "_site/index.html"
@@ -17,9 +17,9 @@ Feature: Site data
17
17
  And I should see "Source path: <path>" in "_site/<path>"
18
18
 
19
19
  Examples:
20
- | dir | path |
21
- | . | index.html |
22
- | dir | dir/about.html |
20
+ | dir | path |
21
+ | . | index.html |
22
+ | dir | dir/about.html |
23
23
  | dir/nested | dir/nested/page.html |
24
24
 
25
25
  Scenario: Override page.path
@@ -38,10 +38,10 @@ Feature: Site data
38
38
  Given I have a _posts directory
39
39
  And I have an "index.html" page that contains "{{ site.posts.first.title }}: {{ site.posts.first.url }}"
40
40
  And I have the following posts:
41
- | title | date | content |
42
- | First Post | 2009-03-25 | My First Post |
43
- | Second Post | 2009-03-26 | My Second Post |
44
- | Third Post | 2009-03-27 | My Third Post |
41
+ | title | date | content |
42
+ | First Post | 2009-03-25 | My First Post |
43
+ | Second Post | 2009-03-26 | My Second Post |
44
+ | Third Post | 2009-03-27 | My Third Post |
45
45
  When I run jekyll
46
46
  Then the _site directory should exist
47
47
  And I should see "Third Post: /2009/03/27/third-post.html" in "_site/index.html"
@@ -50,10 +50,10 @@ Feature: Site data
50
50
  Given I have a _posts directory
51
51
  And I have an "index.html" page that contains "{% for post in site.posts %} {{ post.title }} {% endfor %}"
52
52
  And I have the following posts:
53
- | title | date | content |
54
- | First Post | 2009-03-25 | My First Post |
55
- | Second Post | 2009-03-26 | My Second Post |
56
- | Third Post | 2009-03-27 | My Third Post |
53
+ | title | date | content |
54
+ | First Post | 2009-03-25 | My First Post |
55
+ | Second Post | 2009-03-26 | My Second Post |
56
+ | Third Post | 2009-03-27 | My Third Post |
57
57
  When I run jekyll
58
58
  Then the _site directory should exist
59
59
  And I should see "Third Post Second Post First Post" in "_site/index.html"
@@ -62,7 +62,7 @@ Feature: Site data
62
62
  Given I have a _posts directory
63
63
  And I have an "index.html" page that contains "{% for post in site.categories.code %} {{ post.title }} {% endfor %}"
64
64
  And I have the following posts:
65
- | title | date | category | content |
65
+ | title | date | category | content |
66
66
  | Awesome Hack | 2009-03-26 | code | puts 'Hello World' |
67
67
  | Delicious Beer | 2009-03-26 | food | 1) Yuengling |
68
68
  When I run jekyll
@@ -73,8 +73,8 @@ Feature: Site data
73
73
  Given I have a _posts directory
74
74
  And I have an "index.html" page that contains "{% for post in site.tags.beer %} {{ post.content }} {% endfor %}"
75
75
  And I have the following posts:
76
- | title | date | tag | content |
77
- | Delicious Beer | 2009-03-26 | beer | 1) Yuengling |
76
+ | title | date | tag | content |
77
+ | Delicious Beer | 2009-03-26 | beer | 1) Yuengling |
78
78
  When I run jekyll
79
79
  Then the _site directory should exist
80
80
  And I should see "Yuengling" in "_site/index.html"
@@ -83,7 +83,7 @@ Feature: Site data
83
83
  Given I have a _posts directory
84
84
  And I have an "index.html" page that contains "{% for post in site.posts %}{{ post.title }}:{{ post.previous.title}},{{ post.next.title}} {% endfor %}"
85
85
  And I have the following posts:
86
- | title | date | content |
86
+ | title | date | content |
87
87
  | first | 2009-02-26 | first |
88
88
  | A | 2009-03-26 | A |
89
89
  | B | 2009-03-26 | B |
@@ -18,19 +18,19 @@ end
18
18
 
19
19
 
20
20
  Before do
21
- FileUtils.mkdir(TEST_DIR)
21
+ FileUtils.mkdir_p(TEST_DIR) unless File.exists?(TEST_DIR)
22
22
  Dir.chdir(TEST_DIR)
23
23
  end
24
24
 
25
25
  After do
26
- FileUtils.rm_rf(TEST_DIR)
27
- FileUtils.rm_rf(JEKYLL_COMMAND_OUTPUT_FILE)
26
+ FileUtils.rm_rf(TEST_DIR) if File.exists?(TEST_DIR)
27
+ FileUtils.rm(JEKYLL_COMMAND_OUTPUT_FILE)
28
28
  end
29
29
 
30
30
  World(Test::Unit::Assertions)
31
31
 
32
32
  Given /^I have a blank site in "(.*)"$/ do |path|
33
- FileUtils.mkdir_p(path)
33
+ FileUtils.mkdir_p(path) unless File.exists?(path)
34
34
  end
35
35
 
36
36
  Given /^I do not have a "(.*)" directory$/ do |path|
@@ -6,9 +6,9 @@ require 'rr'
6
6
  require 'test/unit'
7
7
  require 'time'
8
8
 
9
- TEST_DIR = File.join('/', 'tmp', 'jekyll')
9
+ TEST_DIR = File.expand_path(File.join('..', '..', 'tmp', 'jekyll'), File.dirname(__FILE__))
10
10
  JEKYLL_PATH = File.join(File.dirname(__FILE__), '..', '..', 'bin', 'jekyll')
11
- JEKYLL_COMMAND_OUTPUT_FILE = File.join('/', 'tmp', 'jekyll_output.txt')
11
+ JEKYLL_COMMAND_OUTPUT_FILE = File.join(File.dirname(TEST_DIR), 'jekyll_output.txt')
12
12
 
13
13
  def jekyll_output_file
14
14
  JEKYLL_COMMAND_OUTPUT_FILE
@@ -1,14 +1,17 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'jekyll/version'
5
+
1
6
  Gem::Specification.new do |s|
2
7
  s.specification_version = 2 if s.respond_to? :specification_version=
3
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
4
- s.rubygems_version = '1.3.5'
5
- s.required_ruby_version = '>= 1.9.2'
9
+ s.rubygems_version = '2.2.2'
10
+ s.required_ruby_version = '>= 1.9.3'
6
11
 
7
12
  s.name = 'jekyll'
8
- s.version = '2.0.0.alpha.1'
13
+ s.version = Jekyll::VERSION
9
14
  s.license = 'MIT'
10
- s.date = '2014-02-13'
11
- s.rubyforge_project = 'jekyll'
12
15
 
13
16
  s.summary = "A simple, blog aware, static site generator."
14
17
  s.description = "Jekyll is a simple, blog aware, static site generator."
@@ -17,32 +20,33 @@ Gem::Specification.new do |s|
17
20
  s.email = 'tom@mojombo.com'
18
21
  s.homepage = 'http://github.com/jekyll/jekyll'
19
22
 
20
- s.require_paths = %w[lib]
21
-
22
- s.executables = ["jekyll"]
23
+ s.files = `git ls-files`.split($/)
24
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
25
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
26
+ s.require_paths = ["lib"]
23
27
 
24
28
  s.rdoc_options = ["--charset=UTF-8"]
25
29
  s.extra_rdoc_files = %w[README.markdown LICENSE]
26
30
 
27
31
  s.add_runtime_dependency('liquid', "~> 2.5.5")
28
32
  s.add_runtime_dependency('classifier', "~> 1.3")
29
- s.add_runtime_dependency('listen', "~> 1.3")
33
+ s.add_runtime_dependency('listen', "~> 2.5")
30
34
  s.add_runtime_dependency('maruku', "0.7.0")
31
35
  s.add_runtime_dependency('pygments.rb', "~> 0.5.0")
32
- s.add_runtime_dependency('mercenary', "~> 0.2.0")
36
+ s.add_runtime_dependency('mercenary', "~> 0.3.1")
33
37
  s.add_runtime_dependency('safe_yaml', "~> 1.0")
34
38
  s.add_runtime_dependency('colorator', "~> 0.1")
35
- s.add_runtime_dependency('redcarpet', "~> 3.0")
39
+ s.add_runtime_dependency('redcarpet', "~> 3.1")
36
40
  s.add_runtime_dependency('toml', '~> 0.1.0')
37
- s.add_runtime_dependency('sass', '~> 3.2')
38
41
  s.add_runtime_dependency('jekyll-coffeescript', '~> 1.0')
42
+ s.add_runtime_dependency('jekyll-sass-converter', '~> 1.0.0.rc3')
39
43
 
40
44
  s.add_development_dependency('rake', "~> 10.1")
41
45
  s.add_development_dependency('rdoc', "~> 3.11")
42
46
  s.add_development_dependency('redgreen', "~> 1.2")
43
47
  s.add_development_dependency('shoulda', "~> 3.5")
44
48
  s.add_development_dependency('rr', "~> 1.1")
45
- s.add_development_dependency('cucumber', "~> 1.3")
49
+ s.add_development_dependency('cucumber', "1.3.11")
46
50
  s.add_development_dependency('RedCloth', "~> 4.2")
47
51
  s.add_development_dependency('kramdown', "~> 1.3")
48
52
  s.add_development_dependency('rdiscount', "~> 1.6")
@@ -55,275 +59,4 @@ Gem::Specification.new do |s|
55
59
  s.add_development_dependency('jekyll_test_plugin')
56
60
  s.add_development_dependency('jekyll_test_plugin_malicious')
57
61
  s.add_development_dependency('rouge', '~> 1.3')
58
-
59
- # = MANIFEST =
60
- s.files = %w[
61
- CONTRIBUTING.markdown
62
- Gemfile
63
- History.markdown
64
- LICENSE
65
- README.markdown
66
- Rakefile
67
- bin/jekyll
68
- cucumber.yml
69
- features/create_sites.feature
70
- features/data.feature
71
- features/drafts.feature
72
- features/embed_filters.feature
73
- features/include_tag.feature
74
- features/markdown.feature
75
- features/pagination.feature
76
- features/permalinks.feature
77
- features/post_data.feature
78
- features/post_excerpts.feature
79
- features/site_configuration.feature
80
- features/site_data.feature
81
- features/step_definitions/jekyll_steps.rb
82
- features/support/env.rb
83
- jekyll.gemspec
84
- lib/jekyll.rb
85
- lib/jekyll/cleaner.rb
86
- lib/jekyll/command.rb
87
- lib/jekyll/commands/build.rb
88
- lib/jekyll/commands/doctor.rb
89
- lib/jekyll/commands/new.rb
90
- lib/jekyll/commands/serve.rb
91
- lib/jekyll/configuration.rb
92
- lib/jekyll/converter.rb
93
- lib/jekyll/converters/identity.rb
94
- lib/jekyll/converters/markdown.rb
95
- lib/jekyll/converters/markdown/kramdown_parser.rb
96
- lib/jekyll/converters/markdown/maruku_parser.rb
97
- lib/jekyll/converters/markdown/rdiscount_parser.rb
98
- lib/jekyll/converters/markdown/redcarpet_parser.rb
99
- lib/jekyll/converters/sass.rb
100
- lib/jekyll/converters/textile.rb
101
- lib/jekyll/convertible.rb
102
- lib/jekyll/core_ext.rb
103
- lib/jekyll/deprecator.rb
104
- lib/jekyll/draft.rb
105
- lib/jekyll/entry_filter.rb
106
- lib/jekyll/errors.rb
107
- lib/jekyll/excerpt.rb
108
- lib/jekyll/filters.rb
109
- lib/jekyll/generator.rb
110
- lib/jekyll/generators/pagination.rb
111
- lib/jekyll/layout.rb
112
- lib/jekyll/layout_reader.rb
113
- lib/jekyll/mime.types
114
- lib/jekyll/page.rb
115
- lib/jekyll/plugin.rb
116
- lib/jekyll/post.rb
117
- lib/jekyll/related_posts.rb
118
- lib/jekyll/site.rb
119
- lib/jekyll/static_file.rb
120
- lib/jekyll/stevenson.rb
121
- lib/jekyll/tags/gist.rb
122
- lib/jekyll/tags/highlight.rb
123
- lib/jekyll/tags/include.rb
124
- lib/jekyll/tags/post_url.rb
125
- lib/jekyll/url.rb
126
- lib/site_template/.gitignore
127
- lib/site_template/_config.yml
128
- lib/site_template/_layouts/default.html
129
- lib/site_template/_layouts/post.html
130
- lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb
131
- lib/site_template/css/main.css
132
- lib/site_template/css/syntax.css
133
- lib/site_template/index.html
134
- script/bootstrap
135
- script/branding
136
- script/cibuild
137
- script/rebund
138
- site/.gitignore
139
- site/CNAME
140
- site/README
141
- site/_config.yml
142
- site/_data/docs.yml
143
- site/_includes/analytics.html
144
- site/_includes/css/gridism.css
145
- site/_includes/css/normalize.css
146
- site/_includes/css/pygments.css
147
- site/_includes/css/style.css
148
- site/_includes/docs_contents.html
149
- site/_includes/docs_contents_mobile.html
150
- site/_includes/docs_option.html
151
- site/_includes/docs_ul.html
152
- site/_includes/footer.html
153
- site/_includes/header.html
154
- site/_includes/news_contents.html
155
- site/_includes/news_contents_mobile.html
156
- site/_includes/news_item.html
157
- site/_includes/primary-nav-items.html
158
- site/_includes/section_nav.html
159
- site/_includes/top.html
160
- site/_layouts/default.html
161
- site/_layouts/docs.html
162
- site/_layouts/news.html
163
- site/_layouts/news_item.html
164
- site/_posts/2013-05-06-jekyll-1-0-0-released.markdown
165
- site/_posts/2013-05-08-jekyll-1-0-1-released.markdown
166
- site/_posts/2013-05-12-jekyll-1-0-2-released.markdown
167
- site/_posts/2013-06-07-jekyll-1-0-3-released.markdown
168
- site/_posts/2013-07-14-jekyll-1-1-0-released.markdown
169
- site/_posts/2013-07-24-jekyll-1-1-1-released.markdown
170
- site/_posts/2013-07-25-jekyll-1-0-4-released.markdown
171
- site/_posts/2013-07-25-jekyll-1-1-2-released.markdown
172
- site/_posts/2013-09-06-jekyll-1-2-0-released.markdown
173
- site/_posts/2013-09-14-jekyll-1-2-1-released.markdown
174
- site/_posts/2013-10-28-jekyll-1-3-0-rc1-released.markdown
175
- site/_posts/2013-11-04-jekyll-1-3-0-released.markdown
176
- site/_posts/2013-11-26-jekyll-1-3-1-released.markdown
177
- site/_posts/2013-12-07-jekyll-1-4-0-released.markdown
178
- site/_posts/2013-12-09-jekyll-1-4-1-released.markdown
179
- site/_posts/2013-12-16-jekyll-1-4-2-released.markdown
180
- site/_posts/2014-01-13-jekyll-1-4-3-released.markdown
181
- site/css/screen.css
182
- site/docs/assets.md
183
- site/docs/configuration.md
184
- site/docs/contributing.md
185
- site/docs/datafiles.md
186
- site/docs/deployment-methods.md
187
- site/docs/drafts.md
188
- site/docs/extras.md
189
- site/docs/frontmatter.md
190
- site/docs/github-pages.md
191
- site/docs/heroku.md
192
- site/docs/history.md
193
- site/docs/index.md
194
- site/docs/installation.md
195
- site/docs/migrations.md
196
- site/docs/pages.md
197
- site/docs/pagination.md
198
- site/docs/permalinks.md
199
- site/docs/plugins.md
200
- site/docs/posts.md
201
- site/docs/quickstart.md
202
- site/docs/resources.md
203
- site/docs/sites.md
204
- site/docs/structure.md
205
- site/docs/templates.md
206
- site/docs/troubleshooting.md
207
- site/docs/upgrading.md
208
- site/docs/usage.md
209
- site/docs/variables.md
210
- site/docs/windows.md
211
- site/favicon.png
212
- site/feed.xml
213
- site/freenode.txt
214
- site/img/article-footer.png
215
- site/img/footer-arrow.png
216
- site/img/footer-logo.png
217
- site/img/logo-2x.png
218
- site/img/octojekyll.png
219
- site/img/tube.png
220
- site/img/tube1x.png
221
- site/index.html
222
- site/js/modernizr-2.5.3.min.js
223
- site/news/index.html
224
- site/news/releases/index.html
225
- test/fixtures/broken_front_matter1.erb
226
- test/fixtures/broken_front_matter2.erb
227
- test/fixtures/broken_front_matter3.erb
228
- test/fixtures/exploit_front_matter.erb
229
- test/fixtures/front_matter.erb
230
- test/helper.rb
231
- test/source/+/foo.md
232
- test/source/.htaccess
233
- test/source/_config.dev.toml
234
- test/source/_data/languages.yml
235
- test/source/_data/members.yaml
236
- test/source/_data/products.yml
237
- test/source/_includes/include.html
238
- test/source/_includes/params.html
239
- test/source/_includes/sig.markdown
240
- test/source/_layouts/default.html
241
- test/source/_layouts/post/simple.html
242
- test/source/_layouts/simple.html
243
- test/source/_plugins/dummy.rb
244
- test/source/_posts/2008-02-02-not-published.textile
245
- test/source/_posts/2008-02-02-published.textile
246
- test/source/_posts/2008-10-18-foo-bar.textile
247
- test/source/_posts/2008-11-21-complex.textile
248
- test/source/_posts/2008-12-03-permalinked-post.textile
249
- test/source/_posts/2008-12-13-include.markdown
250
- test/source/_posts/2009-01-27-array-categories.textile
251
- test/source/_posts/2009-01-27-categories.textile
252
- test/source/_posts/2009-01-27-category.textile
253
- test/source/_posts/2009-01-27-empty-categories.textile
254
- test/source/_posts/2009-01-27-empty-category.textile
255
- test/source/_posts/2009-03-12-hash-#1.markdown
256
- test/source/_posts/2009-05-18-empty-tag.textile
257
- test/source/_posts/2009-05-18-empty-tags.textile
258
- test/source/_posts/2009-05-18-tag.textile
259
- test/source/_posts/2009-05-18-tags.textile
260
- test/source/_posts/2009-06-22-empty-yaml.textile
261
- test/source/_posts/2009-06-22-no-yaml.textile
262
- test/source/_posts/2010-01-08-triple-dash.markdown
263
- test/source/_posts/2010-01-09-date-override.textile
264
- test/source/_posts/2010-01-09-time-override.textile
265
- test/source/_posts/2010-01-09-timezone-override.textile
266
- test/source/_posts/2010-01-16-override-data.textile
267
- test/source/_posts/2011-04-12-md-extension.md
268
- test/source/_posts/2011-04-12-text-extension.text
269
- test/source/_posts/2013-01-02-post-excerpt.markdown
270
- test/source/_posts/2013-01-12-nil-layout.textile
271
- test/source/_posts/2013-01-12-no-layout.textile
272
- test/source/_posts/2013-03-19-not-a-post.markdown/.gitkeep
273
- test/source/_posts/2013-04-11-custom-excerpt.markdown
274
- test/source/_posts/2013-05-10-number-category.textile
275
- test/source/_posts/2013-07-22-post-excerpt-with-layout.markdown
276
- test/source/_posts/2013-08-01-mkdn-extension.mkdn
277
- test/source/_posts/2013-12-17-include-variable-filters.markdown
278
- test/source/_posts/2013-12-20-properties.text
279
- test/source/_posts/es/2008-11-21-nested.textile
280
- test/source/_sass/_grid.scss
281
- test/source/about.html
282
- test/source/category/_posts/2008-9-23-categories.textile
283
- test/source/contacts.html
284
- test/source/contacts/bar.html
285
- test/source/contacts/index.html
286
- test/source/css/main.scss
287
- test/source/css/screen.css
288
- test/source/deal.with.dots.html
289
- test/source/foo/_posts/bar/2008-12-12-topical-post.textile
290
- test/source/index.html
291
- test/source/js/coffeescript.coffee
292
- test/source/products.yml
293
- test/source/properties.html
294
- test/source/sitemap.xml
295
- test/source/symlink-test/_data
296
- test/source/symlink-test/symlinked-dir
297
- test/source/symlink-test/symlinked-file
298
- test/source/unpublished.html
299
- test/source/win/_posts/2009-05-24-yaml-linebreak.markdown
300
- test/source/z_category/_posts/2008-9-23-categories.textile
301
- test/suite.rb
302
- test/test_coffeescript.rb
303
- test/test_command.rb
304
- test/test_configuration.rb
305
- test/test_convertible.rb
306
- test/test_core_ext.rb
307
- test/test_entry_filter.rb
308
- test/test_excerpt.rb
309
- test/test_filters.rb
310
- test/test_generated_site.rb
311
- test/test_kramdown.rb
312
- test/test_layout_reader.rb
313
- test/test_new_command.rb
314
- test/test_page.rb
315
- test/test_pager.rb
316
- test/test_post.rb
317
- test/test_rdiscount.rb
318
- test/test_redcarpet.rb
319
- test/test_redcloth.rb
320
- test/test_related_posts.rb
321
- test/test_sass.rb
322
- test/test_site.rb
323
- test/test_tags.rb
324
- test/test_url.rb
325
- ]
326
- # = MANIFEST =
327
-
328
- s.test_files = s.files.select { |path| path =~ /^test\/test_.*\.rb/ }
329
62
  end