jekyll 1.0.0.rc1 → 1.0.0
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.
- data/CONTRIBUTING.md +1 -1
- data/History.txt +15 -1
- data/Rakefile +0 -4
- data/bin/jekyll +3 -3
- data/features/pagination.feature +5 -5
- data/features/step_definitions/jekyll_steps.rb +1 -1
- data/jekyll.gemspec +9 -6
- data/lib/jekyll.rb +1 -2
- data/lib/jekyll/commands/new.rb +4 -0
- data/lib/jekyll/configuration.rb +3 -1
- data/lib/jekyll/converters/markdown/redcarpet_parser.rb +1 -0
- data/lib/jekyll/convertible.rb +66 -36
- data/lib/jekyll/deprecator.rb +9 -0
- data/lib/jekyll/filters.rb +17 -4
- data/lib/jekyll/generators/pagination.rb +17 -5
- data/lib/jekyll/logger.rb +3 -1
- data/lib/jekyll/page.rb +1 -13
- data/lib/jekyll/post.rb +67 -49
- data/lib/jekyll/site.rb +3 -3
- data/lib/jekyll/tags/highlight.rb +2 -0
- data/lib/jekyll/tags/post_url.rb +25 -7
- data/lib/site_template/.gitignore +1 -0
- data/lib/site_template/_config.yml +1 -0
- data/lib/site_template/_layouts/default.html +44 -36
- data/lib/site_template/_layouts/post.html +3 -0
- data/lib/site_template/css/main.css +165 -0
- data/site/_includes/docs_contents.html +4 -1
- data/site/_includes/docs_contents_mobile.html +36 -0
- data/site/_includes/footer.html +10 -10
- data/site/_includes/header.html +7 -15
- data/site/_includes/primary-nav-items.html +11 -0
- data/site/_includes/top.html +2 -1
- data/site/_layouts/default.html +1 -1
- data/site/_layouts/docs.html +4 -2
- data/site/_posts/2012-07-01-configuration.md +18 -8
- data/site/_posts/2012-07-01-contributing.md +22 -6
- data/site/_posts/2012-07-01-extras.md +3 -2
- data/site/_posts/2012-07-01-frontmatter.md +7 -2
- data/site/_posts/2012-07-01-home.md +4 -4
- data/site/_posts/2012-07-01-installation.md +6 -6
- data/site/_posts/2012-07-01-migrations.md +64 -23
- data/site/_posts/2012-07-01-pages.md +2 -2
- data/site/_posts/2012-07-01-pagination.md +6 -1
- data/site/_posts/2012-07-01-permalinks.md +6 -0
- data/site/_posts/2012-07-01-plugins.md +9 -1
- data/site/_posts/2012-07-01-resources.md +1 -4
- data/site/_posts/2012-07-01-structure.md +3 -1
- data/site/_posts/2012-07-01-templates.md +2 -1
- data/site/_posts/2012-07-01-troubleshooting.md +20 -2
- data/site/_posts/2012-07-01-upgrading.md +104 -0
- data/site/_posts/2012-07-01-usage.md +1 -1
- data/site/_posts/2012-07-01-variables.md +18 -9
- data/site/css/gridism.css +110 -0
- data/site/css/style.css +236 -101
- data/site/img/footer-logo.png +0 -0
- data/site/img/octojekyll.png +0 -0
- data/site/index.html +51 -43
- data/test/helper.rb +1 -0
- data/test/source/_posts/es/2008-11-21-nested.textile +8 -0
- data/test/test_convertible.rb +1 -1
- data/test/test_filters.rb +34 -11
- data/test/test_generated_site.rb +13 -2
- data/test/test_kramdown.rb +4 -2
- data/test/test_pager.rb +4 -2
- data/test/test_post.rb +2 -2
- data/test/test_site.rb +7 -6
- data/test/test_tags.rb +30 -0
- metadata +12 -12
- data/lib/site_template/css/screen.css +0 -189
- data/lib/site_template/images/.gitkeep +0 -0
- data/lib/site_template/images/rss.png +0 -0
- data/site/css/grid.css +0 -62
data/site/img/footer-logo.png
CHANGED
Binary file
|
data/site/img/octojekyll.png
CHANGED
Binary file
|
data/site/index.html
CHANGED
@@ -5,25 +5,27 @@ overview: true
|
|
5
5
|
---
|
6
6
|
|
7
7
|
<section class="intro">
|
8
|
-
<div class="
|
9
|
-
<
|
8
|
+
<div class="grid">
|
9
|
+
<div class="unit whole center-on-mobiles">
|
10
|
+
<p class="first">Transform your plain text into static websites and blogs.</p>
|
11
|
+
</div>
|
10
12
|
</div>
|
11
13
|
</section>
|
12
14
|
<section class="features">
|
13
|
-
<div class="
|
14
|
-
<div class="
|
15
|
+
<div class="grid">
|
16
|
+
<div class="unit one-third">
|
15
17
|
<h2>Simple</h2>
|
16
18
|
<p>
|
17
19
|
No more databases, comment moderation, or pesky updates to install—just <em>your content</em>.
|
18
20
|
</p>
|
19
21
|
<a href="{% post_url 2012-07-01-usage %}" class="">How Jekyll works →</a>
|
20
22
|
</div>
|
21
|
-
<div class="
|
23
|
+
<div class="unit one-third">
|
22
24
|
<h2>Static</h2>
|
23
25
|
<p><a href="http://daringfireball.net/projects/markdown/">Markdown</a> (or <a href="http://textile.sitemonks.com/">Textile</a>), <a href="http://liquidmarkup.org/">Liquid</a>, HTML <span class="amp">&</span> CSS go in. Static sites come out ready for deployment.</p>
|
24
26
|
<a href="{% post_url 2012-07-01-templates %}" class="">Jekyll template guide →</a>
|
25
27
|
</div>
|
26
|
-
<div class="
|
28
|
+
<div class="unit one-third">
|
27
29
|
<h2>Blog-aware</h2>
|
28
30
|
<p>
|
29
31
|
Permalinks, categories, pages, posts, and custom layouts are all first-class citizens here.
|
@@ -34,49 +36,55 @@ overview: true
|
|
34
36
|
</div>
|
35
37
|
</section>
|
36
38
|
<section class="quickstart">
|
37
|
-
<div class="
|
38
|
-
<div class="
|
39
|
-
<h4>Get up and running <em>in
|
39
|
+
<div class="grid">
|
40
|
+
<div class="unit golden-small center-on-mobiles">
|
41
|
+
<h4>Get up and running <em>in seconds</em>.</h4>
|
40
42
|
</div>
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
</div>
|
43
|
+
<div class="unit golden-large code">
|
44
|
+
<p class="title">Quick-start Instructions</p>
|
45
|
+
<div class="shell">
|
46
|
+
<p class="line">
|
47
|
+
<span class="path">~</span>
|
48
|
+
<span class="prompt">$</span>
|
49
|
+
<span class="command">gem install jekyll</span>
|
50
|
+
</p>
|
51
|
+
<p class="line">
|
52
|
+
<span class="path">~</span>
|
53
|
+
<span class="prompt">$</span>
|
54
|
+
<span class="command">jekyll new my-awesome-site</span>
|
55
|
+
</p>
|
56
|
+
<p class="line">
|
57
|
+
<span class="path">~</span>
|
58
|
+
<span class="prompt">$</span>
|
59
|
+
<span class="command">cd my-awesome-site</span>
|
60
|
+
</p>
|
61
|
+
<p class="line">
|
62
|
+
<span class="path">~/my-awesome-site</span>
|
63
|
+
<span class="prompt">$</span>
|
64
|
+
<span class="command">jekyll serve</span>
|
65
|
+
</p>
|
66
|
+
<p class="line">
|
67
|
+
<span class="output"># => Now browse to http://localhost:4000</span>
|
68
|
+
</p>
|
68
69
|
</div>
|
70
|
+
</div>
|
69
71
|
<div class="clear"></div>
|
70
72
|
</div>
|
71
73
|
</section>
|
72
74
|
<section class="free-hosting">
|
73
|
-
<div class="
|
74
|
-
<
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
75
|
+
<div class="grid">
|
76
|
+
<div class="unit whole">
|
77
|
+
<div class="grid pane">
|
78
|
+
<div class="unit whole center-on-mobiles">
|
79
|
+
<img src="img/octojekyll.png" alt="Free Jekyll hosting on GitHub Pages">
|
80
|
+
<div class="pane-content">
|
81
|
+
<h2 class="center-on-mobiles"><strong>Free hosting</strong> with GitHub Pages</h2>
|
82
|
+
<p>Sick of dealing with hosting companies? <a href="http://pages.github.com/">GitHub Pages</a> are <em>powered by Jekyll</em>, so you can easily deploy your site using GitHub for free—<a href="https://help.github.com/articles/setting-up-a-custom-domain-with-pages">custom domain name</a> and all.</p>
|
83
|
+
<a href="http://pages.github.com/" class="">Learn more about GitHub Pages →</a>
|
84
|
+
</div>
|
85
|
+
</div>
|
86
|
+
<div class="clear"></div>
|
87
|
+
</div>
|
80
88
|
</div>
|
81
89
|
</div>
|
82
90
|
</section>
|
data/test/helper.rb
CHANGED
data/test/test_convertible.rb
CHANGED
@@ -25,7 +25,7 @@ class TestConvertible < Test::Unit::TestCase
|
|
25
25
|
ret = @convertible.read_yaml(@base, name)
|
26
26
|
assert_equal({}, ret)
|
27
27
|
end
|
28
|
-
assert_match(/YAML Exception|syntax error/, out)
|
28
|
+
assert_match(/YAML Exception|syntax error|Error reading file/, out)
|
29
29
|
assert_match(/#{File.join(@base, name)}/, out)
|
30
30
|
end
|
31
31
|
|
data/test/test_filters.rb
CHANGED
@@ -14,6 +14,7 @@ class TestFilters < Test::Unit::TestCase
|
|
14
14
|
setup do
|
15
15
|
@filter = JekyllFilter.new
|
16
16
|
@sample_time = Time.utc(2013, 03, 27, 11, 22, 33)
|
17
|
+
@time_as_string = "September 11, 2001 12:46:30 -0000"
|
17
18
|
end
|
18
19
|
|
19
20
|
should "textilize with simple string" do
|
@@ -43,20 +44,42 @@ class TestFilters < Test::Unit::TestCase
|
|
43
44
|
assert_equal "chunky, bacon, bits, and pieces", @filter.array_to_sentence_string(["chunky", "bacon", "bits", "pieces"])
|
44
45
|
end
|
45
46
|
|
46
|
-
|
47
|
-
|
48
|
-
|
47
|
+
context "date filters" do
|
48
|
+
context "with Time object" do
|
49
|
+
should "format a date with short format" do
|
50
|
+
assert_equal "27 Mar 2013", @filter.date_to_string(@sample_time)
|
51
|
+
end
|
49
52
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
+
should "format a date with long format" do
|
54
|
+
assert_equal "27 March 2013", @filter.date_to_long_string(@sample_time)
|
55
|
+
end
|
53
56
|
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
+
should "format a time with xmlschema" do
|
58
|
+
assert_equal "2013-03-27T11:22:33Z", @filter.date_to_xmlschema(@sample_time)
|
59
|
+
end
|
60
|
+
|
61
|
+
should "format a time according to RFC-822" do
|
62
|
+
assert_equal "Wed, 27 Mar 2013 11:22:33 -0000", @filter.date_to_rfc822(@sample_time)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
context "with String object" do
|
67
|
+
should "format a date with short format" do
|
68
|
+
assert_equal "11 Sep 2001", @filter.date_to_string(@time_as_string)
|
69
|
+
end
|
70
|
+
|
71
|
+
should "format a date with long format" do
|
72
|
+
assert_equal "11 September 2001", @filter.date_to_long_string(@time_as_string)
|
73
|
+
end
|
74
|
+
|
75
|
+
should "format a time with xmlschema" do
|
76
|
+
assert_equal "2001-09-11T12:46:30Z", @filter.date_to_xmlschema(@time_as_string)
|
77
|
+
end
|
57
78
|
|
58
|
-
|
59
|
-
|
79
|
+
should "format a time according to RFC-822" do
|
80
|
+
assert_equal "Tue, 11 Sep 2001 12:46:30 -0000", @filter.date_to_rfc822(@time_as_string)
|
81
|
+
end
|
82
|
+
end
|
60
83
|
end
|
61
84
|
|
62
85
|
should "escape xml with ampersands" do
|
data/test/test_generated_site.rb
CHANGED
@@ -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
|
17
|
+
assert_equal 33, @site.posts.size
|
18
18
|
end
|
19
19
|
|
20
20
|
should "insert site.posts into the index" do
|
@@ -58,8 +58,19 @@ class TestGeneratedSite < Test::Unit::TestCase
|
|
58
58
|
assert_equal 5, @site.posts.size
|
59
59
|
end
|
60
60
|
|
61
|
-
should "ensure limit posts is
|
61
|
+
should "ensure limit posts is 0 or more" do
|
62
62
|
assert_raise ArgumentError do
|
63
|
+
clear_dest
|
64
|
+
stub(Jekyll).configuration do
|
65
|
+
Jekyll::Configuration::DEFAULTS.merge({'source' => source_dir, 'destination' => dest_dir, 'limit_posts' => -1})
|
66
|
+
end
|
67
|
+
|
68
|
+
@site = Site.new(Jekyll.configuration)
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
should "acceptable limit post is 0" do
|
73
|
+
assert_nothing_raised ArgumentError do
|
63
74
|
clear_dest
|
64
75
|
stub(Jekyll).configuration do
|
65
76
|
Jekyll::Configuration::DEFAULTS.merge({'source' => source_dir, 'destination' => dest_dir, 'limit_posts' => 0})
|
data/test/test_kramdown.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
1
3
|
require 'helper'
|
2
4
|
|
3
5
|
class TestKramdown < Test::Unit::TestCase
|
@@ -23,11 +25,11 @@ class TestKramdown < Test::Unit::TestCase
|
|
23
25
|
|
24
26
|
should "convert quotes to smart quotes" do
|
25
27
|
markdown = Converters::Markdown.new(@config)
|
26
|
-
|
28
|
+
assert_match /<p>(“|“)Pit(’|’)hy(”|”)<\/p>/, markdown.convert(%{"Pit'hy"}).strip
|
27
29
|
|
28
30
|
override = { 'kramdown' => { 'smart_quotes' => 'lsaquo,rsaquo,laquo,raquo' } }
|
29
31
|
markdown = Converters::Markdown.new(@config.deep_merge(override))
|
30
|
-
|
32
|
+
assert_match /<p>(«|«)Pit(›|›)hy(»|»)<\/p>/, markdown.convert(%{"Pit'hy"}).strip
|
31
33
|
end
|
32
34
|
end
|
33
35
|
end
|
data/test/test_pager.rb
CHANGED
@@ -23,7 +23,8 @@ class TestPager < Test::Unit::TestCase
|
|
23
23
|
end
|
24
24
|
|
25
25
|
should "report that pagination is disabled" do
|
26
|
-
|
26
|
+
page = OpenStruct.new({ :name => 'index.html', :dir => '/' })
|
27
|
+
assert !Pager.pagination_enabled?(@config, page)
|
27
28
|
end
|
28
29
|
|
29
30
|
end
|
@@ -45,7 +46,8 @@ class TestPager < Test::Unit::TestCase
|
|
45
46
|
end
|
46
47
|
|
47
48
|
should "report that pagination is enabled" do
|
48
|
-
|
49
|
+
page = OpenStruct.new({ :name => 'index.html', :dir => '/' })
|
50
|
+
assert Pager.pagination_enabled?(@config, page)
|
49
51
|
end
|
50
52
|
|
51
53
|
context "with 4 posts" do
|
data/test/test_post.rb
CHANGED
@@ -71,8 +71,8 @@ class TestPost < Test::Unit::TestCase
|
|
71
71
|
@post.read_yaml(@source, file)
|
72
72
|
|
73
73
|
assert_equal "my_category/permalinked-post", @post.permalink
|
74
|
-
assert_equal "my_category", @post.dir
|
75
|
-
assert_equal "my_category/permalinked-post", @post.url
|
74
|
+
assert_equal "/my_category", @post.dir
|
75
|
+
assert_equal "/my_category/permalinked-post", @post.url
|
76
76
|
end
|
77
77
|
|
78
78
|
context "with CRLF linebreaks" do
|
data/test/test_site.rb
CHANGED
@@ -48,6 +48,7 @@ class TestSite < Test::Unit::TestCase
|
|
48
48
|
Jekyll::Configuration::DEFAULTS.merge({'source' => source_dir, 'destination' => dest_dir})
|
49
49
|
end
|
50
50
|
@site = Site.new(Jekyll.configuration)
|
51
|
+
@num_invalid_posts = 2
|
51
52
|
end
|
52
53
|
|
53
54
|
should "have an empty tag hash by default" do
|
@@ -160,20 +161,20 @@ class TestSite < Test::Unit::TestCase
|
|
160
161
|
|
161
162
|
should "read posts" do
|
162
163
|
@site.read_posts('')
|
163
|
-
posts = Dir[source_dir('_posts', '*')]
|
164
|
-
posts.delete_if { |post| File.directory?(post) }
|
165
|
-
assert_equal posts.size -
|
164
|
+
posts = Dir[source_dir('_posts', '**', '*')]
|
165
|
+
posts.delete_if { |post| File.directory?(post) && !Post.valid?(post) }
|
166
|
+
assert_equal posts.size - @num_invalid_posts, @site.posts.size
|
166
167
|
end
|
167
168
|
|
168
169
|
should "deploy payload" do
|
169
170
|
clear_dest
|
170
171
|
@site.process
|
171
172
|
|
172
|
-
posts = Dir[source_dir("**", "_posts", "*")]
|
173
|
-
posts.delete_if { |post| File.directory?(post) }
|
173
|
+
posts = Dir[source_dir("**", "_posts", "**", "*")]
|
174
|
+
posts.delete_if { |post| File.directory?(post) && !Post.valid?(post) }
|
174
175
|
categories = %w(bar baz category foo z_category publish_test win).sort
|
175
176
|
|
176
|
-
assert_equal posts.size, @site.posts.size
|
177
|
+
assert_equal posts.size - @num_invalid_posts, @site.posts.size
|
177
178
|
assert_equal categories, @site.categories.keys.sort
|
178
179
|
assert_equal 4, @site.categories['foo'].size
|
179
180
|
end
|
data/test/test_tags.rb
CHANGED
@@ -204,6 +204,36 @@ CONTENT
|
|
204
204
|
end
|
205
205
|
end
|
206
206
|
|
207
|
+
context "simple page with nested post linking" do
|
208
|
+
setup do
|
209
|
+
content = <<CONTENT
|
210
|
+
---
|
211
|
+
title: Post linking
|
212
|
+
---
|
213
|
+
|
214
|
+
- 1 {% post_url 2008-11-21-complex %}
|
215
|
+
- 2 {% post_url /2008-11-21-complex %}
|
216
|
+
- 3 {% post_url es/2008-11-21-nested %}
|
217
|
+
- 4 {% post_url /es/2008-11-21-nested %}
|
218
|
+
CONTENT
|
219
|
+
create_post(content, {'permalink' => 'pretty', 'source' => source_dir, 'destination' => dest_dir, 'read_posts' => true})
|
220
|
+
end
|
221
|
+
|
222
|
+
should "not cause an error" do
|
223
|
+
assert_no_match /markdown\-html\-error/, @result
|
224
|
+
end
|
225
|
+
|
226
|
+
should "have the url to the \"nested\" post from 2008-11-21" do
|
227
|
+
assert_match %r{1\s/2008/11/21/complex/}, @result
|
228
|
+
assert_match %r{2\s/2008/11/21/complex/}, @result
|
229
|
+
end
|
230
|
+
|
231
|
+
should "have the url to the \"nested\" post from 2008-11-21" do
|
232
|
+
assert_match %r{3\s/2008/11/21/nested/}, @result
|
233
|
+
assert_match %r{4\s/2008/11/21/nested/}, @result
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
207
237
|
context "gist tag" do
|
208
238
|
context "simple" do
|
209
239
|
setup do
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
5
|
-
prerelease:
|
4
|
+
version: 1.0.0
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Tom Preston-Werner
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-05-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: liquid
|
@@ -416,14 +416,13 @@ files:
|
|
416
416
|
- lib/jekyll/tags/highlight.rb
|
417
417
|
- lib/jekyll/tags/include.rb
|
418
418
|
- lib/jekyll/tags/post_url.rb
|
419
|
+
- lib/site_template/.gitignore
|
419
420
|
- lib/site_template/_config.yml
|
420
421
|
- lib/site_template/_layouts/default.html
|
421
422
|
- lib/site_template/_layouts/post.html
|
422
423
|
- lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb
|
423
|
-
- lib/site_template/css/
|
424
|
+
- lib/site_template/css/main.css
|
424
425
|
- lib/site_template/css/syntax.css
|
425
|
-
- lib/site_template/images/.gitkeep
|
426
|
-
- lib/site_template/images/rss.png
|
427
426
|
- lib/site_template/index.html
|
428
427
|
- script/bootstrap
|
429
428
|
- site/.gitignore
|
@@ -432,8 +431,10 @@ files:
|
|
432
431
|
- site/_config.yml
|
433
432
|
- site/_includes/analytics.html
|
434
433
|
- site/_includes/docs_contents.html
|
434
|
+
- site/_includes/docs_contents_mobile.html
|
435
435
|
- site/_includes/footer.html
|
436
436
|
- site/_includes/header.html
|
437
|
+
- site/_includes/primary-nav-items.html
|
437
438
|
- site/_includes/section_nav.html
|
438
439
|
- site/_includes/top.html
|
439
440
|
- site/_layouts/default.html
|
@@ -458,9 +459,10 @@ files:
|
|
458
459
|
- site/_posts/2012-07-01-structure.md
|
459
460
|
- site/_posts/2012-07-01-templates.md
|
460
461
|
- site/_posts/2012-07-01-troubleshooting.md
|
462
|
+
- site/_posts/2012-07-01-upgrading.md
|
461
463
|
- site/_posts/2012-07-01-usage.md
|
462
464
|
- site/_posts/2012-07-01-variables.md
|
463
|
-
- site/css/
|
465
|
+
- site/css/gridism.css
|
464
466
|
- site/css/normalize.css
|
465
467
|
- site/css/pygments.css
|
466
468
|
- site/css/style.css
|
@@ -516,6 +518,7 @@ files:
|
|
516
518
|
- test/source/_posts/2013-01-12-no-layout.textile
|
517
519
|
- test/source/_posts/2013-03-19-not-a-post.markdown/.gitkeep
|
518
520
|
- test/source/_posts/2013-04-11-custom-excerpt.markdown
|
521
|
+
- test/source/_posts/es/2008-11-21-nested.textile
|
519
522
|
- test/source/about.html
|
520
523
|
- test/source/category/_posts/2008-9-23-categories.textile
|
521
524
|
- test/source/contacts.html
|
@@ -560,15 +563,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
560
563
|
- - ! '>='
|
561
564
|
- !ruby/object:Gem::Version
|
562
565
|
version: '0'
|
563
|
-
segments:
|
564
|
-
- 0
|
565
|
-
hash: -61414058465599084
|
566
566
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
567
567
|
none: false
|
568
568
|
requirements:
|
569
|
-
- - ! '
|
569
|
+
- - ! '>='
|
570
570
|
- !ruby/object:Gem::Version
|
571
|
-
version:
|
571
|
+
version: '0'
|
572
572
|
requirements: []
|
573
573
|
rubyforge_project: jekyll
|
574
574
|
rubygems_version: 1.8.23
|