jsjohnst-jekyll 0.4.1.999.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +106 -0
- data/README.textile +555 -0
- data/VERSION.yml +4 -0
- data/bin/jekyll +146 -0
- data/lib/jekyll.rb +81 -0
- data/lib/jekyll/albino.rb +121 -0
- data/lib/jekyll/converters/csv.rb +26 -0
- data/lib/jekyll/converters/mephisto.rb +79 -0
- data/lib/jekyll/converters/mt.rb +59 -0
- data/lib/jekyll/converters/rss.rb +44 -0
- data/lib/jekyll/converters/textpattern.rb +50 -0
- data/lib/jekyll/converters/typo.rb +49 -0
- data/lib/jekyll/converters/wordpress.rb +55 -0
- data/lib/jekyll/convertible.rb +71 -0
- data/lib/jekyll/core_ext.rb +22 -0
- data/lib/jekyll/filters.rb +87 -0
- data/lib/jekyll/layout.rb +47 -0
- data/lib/jekyll/page.rb +64 -0
- data/lib/jekyll/post.rb +232 -0
- data/lib/jekyll/site.rb +221 -0
- data/lib/jekyll/tags/highlight.rb +53 -0
- data/lib/jekyll/tags/include.rb +49 -0
- data/lib/jekyll/tasks.rb +68 -0
- data/test/helper.rb +14 -0
- data/test/source/_includes/sig.markdown +3 -0
- data/test/source/_layouts/default.html +27 -0
- data/test/source/_layouts/simple.html +1 -0
- data/test/source/_posts/2008-02-02-not-published.textile +8 -0
- data/test/source/_posts/2008-02-02-published.textile +8 -0
- data/test/source/_posts/2008-10-18-foo-bar.textile +8 -0
- data/test/source/_posts/2008-11-21-complex.textile +8 -0
- data/test/source/_posts/2008-12-03-permalinked-post.textile +9 -0
- data/test/source/_posts/2008-12-13-include.markdown +8 -0
- data/test/source/_posts/2009-01-27-categories.textile +7 -0
- data/test/source/_posts/2009-01-27-category.textile +7 -0
- data/test/source/category/_posts/2008-9-23-categories.textile +6 -0
- data/test/source/category_test.html +13 -0
- data/test/source/css/screen.css +76 -0
- data/test/source/foo/_posts/bar/2008-12-12-topical-post.textile +8 -0
- data/test/source/index.html +22 -0
- data/test/source/z_category/_posts/2008-9-23-categories.textile +6 -0
- data/test/suite.rb +9 -0
- data/test/test_filters.rb +49 -0
- data/test/test_generated_site.rb +37 -0
- data/test/test_jekyll.rb +0 -0
- data/test/test_post.rb +174 -0
- data/test/test_site.rb +51 -0
- data/test/test_tags.rb +52 -0
- metadata +186 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/helper'
|
2
|
+
|
3
|
+
class TestFilters < Test::Unit::TestCase
|
4
|
+
|
5
|
+
class JekyllFilter
|
6
|
+
include Jekyll::Filters
|
7
|
+
end
|
8
|
+
|
9
|
+
def setup
|
10
|
+
@filter = JekyllFilter.new
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_textilize_with_simple_string
|
14
|
+
assert_equal "<p>something <strong>really</strong> simple</p>", @filter.textilize("something *really* simple")
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_identify_and_split_at_fold
|
18
|
+
assert_equal "<p>something</p>", @filter.before_fold("<p>something</p><hr/><p>something else</p>")
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_array_to_sentence_string_with_no_args
|
22
|
+
assert_equal "", @filter.array_to_sentence_string([])
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_array_to_sentence_string_with_one_arg
|
26
|
+
assert_equal "1", @filter.array_to_sentence_string([1])
|
27
|
+
assert_equal "chunky", @filter.array_to_sentence_string(["chunky"])
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_array_to_sentence_string_with_two_args
|
31
|
+
assert_equal "1 and 2", @filter.array_to_sentence_string([1, 2])
|
32
|
+
assert_equal "chunky and bacon", @filter.array_to_sentence_string(["chunky", "bacon"])
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_array_to_sentence_string_with_multiple_args
|
36
|
+
assert_equal "1, 2, 3, and 4", @filter.array_to_sentence_string([1, 2, 3, 4])
|
37
|
+
assert_equal "chunky, bacon, bits, and pieces", @filter.array_to_sentence_string(["chunky", "bacon", "bits", "pieces"])
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_xml_escape_with_ampersands
|
41
|
+
assert_equal "AT&T", @filter.xml_escape("AT&T")
|
42
|
+
assert_equal "<code>command &lt;filename&gt;</code>", @filter.xml_escape("<code>command <filename></code>")
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_strip_html_suffix
|
46
|
+
assert_equal "/posts/zomg", @filter.strip_html_suffix("/posts/zomg.html")
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/helper'
|
2
|
+
|
3
|
+
class TestGeneratedSite < Test::Unit::TestCase
|
4
|
+
def setup
|
5
|
+
clear_dest
|
6
|
+
@source = File.join(File.dirname(__FILE__), *%w[source])
|
7
|
+
@s = Site.new(@source, dest_dir)
|
8
|
+
@s.process
|
9
|
+
@index = File.read(File.join(dest_dir, 'index.html'))
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_site_posts_in_index
|
13
|
+
# confirm that {{ site.posts }} is working
|
14
|
+
assert @index.include?("#{@s.posts.size} Posts")
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_post_content_in_index
|
18
|
+
# confirm that the {{ post.content }} is rendered OK
|
19
|
+
latest_post = Dir[File.join(@source, '_posts/*')].sort.last
|
20
|
+
post = Post.new(@source, '', File.basename(latest_post))
|
21
|
+
Jekyll.content_type = post.determine_content_type
|
22
|
+
post.transform
|
23
|
+
assert @index.include?(post.content)
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_unpublished_posts_are_hidden
|
27
|
+
published = Dir[File.join(dest_dir, 'publish_test/2008/02/02/*/index.html')].map {|f| File.basename(f)}
|
28
|
+
|
29
|
+
assert_equal 1, published.size
|
30
|
+
assert_equal "index.html", published.first
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_post_categories_in_category_test
|
34
|
+
category_test = File.read(File.join(dest_dir, 'category_test.html'))
|
35
|
+
assert category_test.include?('<div>foo bar baz</div>')
|
36
|
+
end
|
37
|
+
end
|
data/test/test_jekyll.rb
ADDED
File without changes
|
data/test/test_post.rb
ADDED
@@ -0,0 +1,174 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/helper'
|
2
|
+
|
3
|
+
class TestPost < Test::Unit::TestCase
|
4
|
+
def setup
|
5
|
+
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_valid
|
9
|
+
assert Post.valid?("2008-10-19-foo-bar.textile")
|
10
|
+
assert Post.valid?("foo/bar/2008-10-19-foo-bar.textile")
|
11
|
+
|
12
|
+
assert !Post.valid?("lol2008-10-19-foo-bar.textile")
|
13
|
+
assert !Post.valid?("blah")
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_process
|
17
|
+
p = Post.allocate
|
18
|
+
p.process("2008-10-19-foo-bar.textile")
|
19
|
+
|
20
|
+
assert_equal Time.parse("2008-10-19"), p.date
|
21
|
+
assert_equal "foo-bar", p.slug
|
22
|
+
assert_equal ".textile", p.ext
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_url
|
26
|
+
p = Post.allocate
|
27
|
+
p.categories = []
|
28
|
+
p.process("2008-10-19-foo-bar.textile")
|
29
|
+
|
30
|
+
assert_equal "/2008/10/19/foo-bar.html", p.url
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_permalink
|
34
|
+
p = Post.allocate
|
35
|
+
p.process("2008-12-03-permalinked-post.textile")
|
36
|
+
p.read_yaml(File.join(File.dirname(__FILE__), *%w[source _posts]), "2008-12-03-permalinked-post.textile")
|
37
|
+
|
38
|
+
assert_equal "my_category/permalinked-post", p.permalink
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_dir_respects_permalink
|
42
|
+
p = Post.allocate
|
43
|
+
p.process("2008-12-03-permalinked-post.textile")
|
44
|
+
p.read_yaml(File.join(File.dirname(__FILE__), *%w[source _posts]), "2008-12-03-permalinked-post.textile")
|
45
|
+
|
46
|
+
assert_equal "my_category/", p.dir
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_url_respects_permalink
|
50
|
+
p = Post.allocate
|
51
|
+
p.process("2008-12-03-permalinked-post.textile")
|
52
|
+
p.read_yaml(File.join(File.dirname(__FILE__), *%w[source _posts]), "2008-12-03-permalinked-post.textile")
|
53
|
+
|
54
|
+
assert_equal "my_category/permalinked-post", p.url
|
55
|
+
end
|
56
|
+
|
57
|
+
def test_read_yaml
|
58
|
+
p = Post.allocate
|
59
|
+
p.read_yaml(File.join(File.dirname(__FILE__), *%w[source _posts]), "2008-10-18-foo-bar.textile")
|
60
|
+
|
61
|
+
assert_equal({"title" => "Foo Bar", "layout" => "default"}, p.data)
|
62
|
+
assert_equal "\nh1. {{ page.title }}\n\nBest *post* ever", p.content
|
63
|
+
end
|
64
|
+
|
65
|
+
def test_transform
|
66
|
+
p = Post.allocate
|
67
|
+
p.process("2008-10-18-foo-bar.textile")
|
68
|
+
p.read_yaml(File.join(File.dirname(__FILE__), *%w[source _posts]), "2008-10-18-foo-bar.textile")
|
69
|
+
p.transform
|
70
|
+
|
71
|
+
assert_equal "<h1>{{ page.title }}</h1>\n<p>Best <strong>post</strong> ever</p>", p.content
|
72
|
+
end
|
73
|
+
|
74
|
+
def test_published
|
75
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2008-02-02-published.textile")
|
76
|
+
assert_equal true, p.published
|
77
|
+
end
|
78
|
+
|
79
|
+
def test_not_published
|
80
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2008-02-02-not-published.textile")
|
81
|
+
assert_equal false, p.published
|
82
|
+
end
|
83
|
+
|
84
|
+
def test_yaml_category
|
85
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2009-01-27-category.textile")
|
86
|
+
assert p.categories.include?('foo')
|
87
|
+
end
|
88
|
+
|
89
|
+
def test_yaml_categories
|
90
|
+
p1 = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '',
|
91
|
+
"2009-01-27-categories.textile")
|
92
|
+
p2 = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '',
|
93
|
+
"2009-01-27-array-categories.textile")
|
94
|
+
|
95
|
+
[p1, p2].each do |p|
|
96
|
+
assert p.categories.include?('foo')
|
97
|
+
assert p.categories.include?('bar')
|
98
|
+
assert p.categories.include?('baz')
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
def test_empty_yaml_categories
|
103
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2009-01-27-no-categories.textile")
|
104
|
+
assert p.categories.empty?
|
105
|
+
end
|
106
|
+
|
107
|
+
def test_yaml_topic
|
108
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2009-01-27-topic.textile")
|
109
|
+
assert p.topics.include?('foo')
|
110
|
+
assert p.data['topics'].include?('foo')
|
111
|
+
end
|
112
|
+
|
113
|
+
def test_yaml_topics
|
114
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2009-01-27-topics.textile")
|
115
|
+
assert p.topics.include?('foo')
|
116
|
+
assert p.topics.include?('bar')
|
117
|
+
assert p.data['topics'].include?('foo')
|
118
|
+
end
|
119
|
+
|
120
|
+
def test_empty_yaml_topics
|
121
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2009-01-27-no-topics.textile")
|
122
|
+
assert p.topics.empty?
|
123
|
+
assert p.data['topics'].empty?
|
124
|
+
end
|
125
|
+
|
126
|
+
def test_render
|
127
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2008-10-18-foo-bar.textile")
|
128
|
+
layouts = {"default" => Layout.new(File.join(File.dirname(__FILE__), *%w[source _layouts]), "simple.html")}
|
129
|
+
p.render(layouts, {"site" => {"posts" => []}})
|
130
|
+
|
131
|
+
assert_equal "<<< <h1>Foo Bar</h1>\n<p>Best <strong>post</strong> ever</p> >>>", p.output
|
132
|
+
end
|
133
|
+
|
134
|
+
def test_write
|
135
|
+
clear_dest
|
136
|
+
|
137
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2008-10-18-foo-bar.textile")
|
138
|
+
layouts = {"default" => Layout.new(File.join(File.dirname(__FILE__), *%w[source _layouts]), "simple.html")}
|
139
|
+
p.render(layouts, {"site" => {"posts" => []}})
|
140
|
+
p.write(dest_dir)
|
141
|
+
end
|
142
|
+
|
143
|
+
def test_data
|
144
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2008-11-21-complex.textile")
|
145
|
+
layouts = {"default" => Layout.new(File.join(File.dirname(__FILE__), *%w[source _layouts]), "simple.html")}
|
146
|
+
p.render(layouts, {"site" => {"posts" => []}})
|
147
|
+
|
148
|
+
assert_equal "<<< <p>url: /2008/11/21/complex<br />\ndate: #{Time.parse("2008-11-21")}<br />\nid: /2008/11/21/complex</p> >>>", p.output
|
149
|
+
end
|
150
|
+
|
151
|
+
def test_categories_and_topics
|
152
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), 'foo', 'bar/2008-12-12-topical-post.textile')
|
153
|
+
assert_equal ['foo'], p.categories
|
154
|
+
assert_equal ['bar'], p.topics
|
155
|
+
end
|
156
|
+
|
157
|
+
def test_include
|
158
|
+
Jekyll.source = File.join(File.dirname(__FILE__), *%w[source])
|
159
|
+
p = Post.new(File.join(File.dirname(__FILE__), *%w[source]), '', "2008-12-13-include.markdown")
|
160
|
+
layouts = {"default" => Layout.new(File.join(File.dirname(__FILE__), *%w[source _layouts]), "simple.html")}
|
161
|
+
p.render(layouts, {"site" => {"posts" => []}})
|
162
|
+
|
163
|
+
assert_equal "<<< <hr />\n<p>Tom Preston-Werner github.com/mojombo</p>\n\n<p>This <em>is</em> cool</p> >>>", p.output
|
164
|
+
end
|
165
|
+
|
166
|
+
def test_dir_with_short_date_permalink_type
|
167
|
+
Jekyll.permalink_style = :shortdate
|
168
|
+
p = Post.allocate
|
169
|
+
p.process("2008-02-03-permalinked-post.textile")
|
170
|
+
p.categories = []
|
171
|
+
assert_equal "/2008/2/3/", p.dir
|
172
|
+
Jekyll.permalink_style = :date
|
173
|
+
end
|
174
|
+
end
|
data/test/test_site.rb
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/helper'
|
2
|
+
|
3
|
+
class TestSite < Test::Unit::TestCase
|
4
|
+
def setup
|
5
|
+
@source = File.join(File.dirname(__FILE__), *%w[source])
|
6
|
+
@s = Site.new(@source, dest_dir, '^Capfile$|^config$|^config/*$|^\.jekyllignore$|^#.*#$|^.*~$')
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_site_init
|
10
|
+
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_read_layouts
|
14
|
+
@s.read_layouts
|
15
|
+
|
16
|
+
assert_equal ["default", "simple"].sort, @s.layouts.keys.sort
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_read_posts
|
20
|
+
@s.read_posts('')
|
21
|
+
posts = Dir[File.join(@source, '_posts/*')]
|
22
|
+
assert_equal posts.size - 2, @s.posts.size
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_site_payload
|
26
|
+
clear_dest
|
27
|
+
@s.process
|
28
|
+
|
29
|
+
site = Dir[File.join(dest_dir, '**', '*')]
|
30
|
+
posts = Dir[File.join(@source, "**", "_posts/*")]
|
31
|
+
categories = %w(bar baz category foo z_category publish_test).sort
|
32
|
+
assert (%w{Capfile config config/deploy.rb _includes _posts/\#2008-02-02-not-published.textile\#}.all? { |file|
|
33
|
+
site.grep(/^#{dest_dir}\/#{file}$/).empty?
|
34
|
+
})
|
35
|
+
assert (%w{.htaccess _posts z_category}.all? { |file|
|
36
|
+
site.grep(/^#{dest_dir}\/#{file}$/)
|
37
|
+
})
|
38
|
+
assert_equal posts.size - 2, @s.posts.size
|
39
|
+
assert_equal categories, @s.categories.keys.sort
|
40
|
+
assert_equal 4, @s.categories['foo'].size
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_filter_entries
|
44
|
+
ent1 = %w[foo.markdown bar.markdown baz.markdown #baz.markdown#
|
45
|
+
.baz.markdow foo.markdown~]
|
46
|
+
ent2 = %w[.htaccess _posts bla.bla]
|
47
|
+
|
48
|
+
assert_equal %w[foo.markdown bar.markdown baz.markdown], @s.filter_entries(ent1)
|
49
|
+
assert_equal ent2, @s.filter_entries(ent2)
|
50
|
+
end
|
51
|
+
end
|
data/test/test_tags.rb
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/helper'
|
2
|
+
|
3
|
+
class TestTags < Test::Unit::TestCase
|
4
|
+
|
5
|
+
def setup
|
6
|
+
@content = <<CONTENT
|
7
|
+
---
|
8
|
+
layout: post
|
9
|
+
title: This is a test
|
10
|
+
|
11
|
+
---
|
12
|
+
*This* document results in a markdown error with maruku
|
13
|
+
{% highlight ruby %}
|
14
|
+
puts "hi"
|
15
|
+
|
16
|
+
puts "bye"
|
17
|
+
{% endhighlight %}
|
18
|
+
|
19
|
+
Are we *still* rendering markdown?
|
20
|
+
|
21
|
+
CONTENT
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_markdown_with_pygments_line_handling
|
25
|
+
Jekyll.pygments = true
|
26
|
+
Jekyll.content_type = :markdown
|
27
|
+
|
28
|
+
result = Liquid::Template.parse(@content).render({}, [Jekyll::Filters])
|
29
|
+
result = Jekyll.markdown_proc.call(result)
|
30
|
+
assert_no_match(/markdown\-html\-error/,result)
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_markdown_after_highlight
|
34
|
+
begin
|
35
|
+
require 'rubygems'
|
36
|
+
require 'rdiscount'
|
37
|
+
|
38
|
+
Jekyll.pygments = true
|
39
|
+
Jekyll.content_type = :markdown
|
40
|
+
Jekyll.markdown_proc = Proc.new { |x| RDiscount.new(x).to_html }
|
41
|
+
|
42
|
+
result = Liquid::Template.parse(@content).render({}, [Jekyll::Filters])
|
43
|
+
result = Jekyll.markdown_proc.call(result)
|
44
|
+
|
45
|
+
assert_match( %r(<em>This</em>), result )
|
46
|
+
assert_match( %r(<em>still</em>), result )
|
47
|
+
rescue LoadError
|
48
|
+
puts "No rdiscount -- test_markdown_after_highlight disabled."
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
metadata
ADDED
@@ -0,0 +1,186 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jsjohnst-jekyll
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.1.999.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tom Preston-Werner
|
8
|
+
- Jeremy Johnstone
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2009-02-25 00:00:00 -08:00
|
14
|
+
default_executable: jekyll
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: RedCloth
|
18
|
+
type: :runtime
|
19
|
+
version_requirement:
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 4.0.4
|
25
|
+
version:
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: liquid
|
28
|
+
type: :runtime
|
29
|
+
version_requirement:
|
30
|
+
version_requirements: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 1.9.0
|
35
|
+
version:
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: classifier
|
38
|
+
type: :runtime
|
39
|
+
version_requirement:
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 1.3.1
|
45
|
+
version:
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: maruku
|
48
|
+
type: :runtime
|
49
|
+
version_requirement:
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.5.9
|
55
|
+
version:
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: directory_watcher
|
58
|
+
type: :runtime
|
59
|
+
version_requirement:
|
60
|
+
version_requirements: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 1.1.1
|
65
|
+
version:
|
66
|
+
- !ruby/object:Gem::Dependency
|
67
|
+
name: open4
|
68
|
+
type: :runtime
|
69
|
+
version_requirement:
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 0.9.6
|
75
|
+
version:
|
76
|
+
- !ruby/object:Gem::Dependency
|
77
|
+
name: hpricot
|
78
|
+
type: :runtime
|
79
|
+
version_requirement:
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: 0.6.164
|
85
|
+
version:
|
86
|
+
description: Jekyll is a simple, blog aware, static site generator.
|
87
|
+
email: tom@mojombo.com
|
88
|
+
executables:
|
89
|
+
- jekyll
|
90
|
+
extensions: []
|
91
|
+
|
92
|
+
extra_rdoc_files: []
|
93
|
+
|
94
|
+
files:
|
95
|
+
- History.txt
|
96
|
+
- README.textile
|
97
|
+
- VERSION.yml
|
98
|
+
- bin/jekyll
|
99
|
+
- lib/jekyll
|
100
|
+
- lib/jekyll/albino.rb
|
101
|
+
- lib/jekyll/converters
|
102
|
+
- lib/jekyll/converters/csv.rb
|
103
|
+
- lib/jekyll/converters/mephisto.rb
|
104
|
+
- lib/jekyll/converters/mt.rb
|
105
|
+
- lib/jekyll/converters/textpattern.rb
|
106
|
+
- lib/jekyll/converters/typo.rb
|
107
|
+
- lib/jekyll/converters/wordpress.rb
|
108
|
+
- lib/jekyll/convertible.rb
|
109
|
+
- lib/jekyll/core_ext.rb
|
110
|
+
- lib/jekyll/filters.rb
|
111
|
+
- lib/jekyll/layout.rb
|
112
|
+
- lib/jekyll/page.rb
|
113
|
+
- lib/jekyll/post.rb
|
114
|
+
- lib/jekyll/site.rb
|
115
|
+
- lib/jekyll/tags
|
116
|
+
- lib/jekyll/tags/highlight.rb
|
117
|
+
- lib/jekyll/tags/include.rb
|
118
|
+
- lib/jekyll/tasks.rb
|
119
|
+
- lib/jekyll.rb
|
120
|
+
- test/helper.rb
|
121
|
+
- test/source
|
122
|
+
- test/source/_includes
|
123
|
+
- test/source/_includes/sig.markdown
|
124
|
+
- test/source/_layouts
|
125
|
+
- test/source/_layouts/default.html
|
126
|
+
- test/source/_layouts/simple.html
|
127
|
+
- test/source/_posts
|
128
|
+
- test/source/_posts/2008-02-02-not-published.textile
|
129
|
+
- test/source/_posts/2008-02-02-published.textile
|
130
|
+
- test/source/_posts/2008-10-18-foo-bar.textile
|
131
|
+
- test/source/_posts/2008-11-21-complex.textile
|
132
|
+
- test/source/_posts/2008-12-03-permalinked-post.textile
|
133
|
+
- test/source/_posts/2008-12-13-include.markdown
|
134
|
+
- test/source/_posts/2009-01-27-categories.textile
|
135
|
+
- test/source/_posts/2009-01-27-category.textile
|
136
|
+
- test/source/category
|
137
|
+
- test/source/category/_posts
|
138
|
+
- test/source/category/_posts/2008-9-23-categories.textile
|
139
|
+
- test/source/css
|
140
|
+
- test/source/css/screen.css
|
141
|
+
- test/source/foo
|
142
|
+
- test/source/foo/_posts
|
143
|
+
- test/source/foo/_posts/bar
|
144
|
+
- test/source/foo/_posts/bar/2008-12-12-topical-post.textile
|
145
|
+
- test/source/index.html
|
146
|
+
- test/source/z_category
|
147
|
+
- test/source/z_category/_posts
|
148
|
+
- test/source/z_category/_posts/2008-9-23-categories.textile
|
149
|
+
- test/suite.rb
|
150
|
+
- test/test_filters.rb
|
151
|
+
- test/test_generated_site.rb
|
152
|
+
- test/test_jekyll.rb
|
153
|
+
- test/test_post.rb
|
154
|
+
- test/test_site.rb
|
155
|
+
- test/test_tags.rb
|
156
|
+
- lib/jekyll/converters/rss.rb
|
157
|
+
- test/source/category_test.html
|
158
|
+
has_rdoc: true
|
159
|
+
homepage: http://github.com/mojombo/jekyll
|
160
|
+
post_install_message:
|
161
|
+
rdoc_options:
|
162
|
+
- --inline-source
|
163
|
+
- --charset=UTF-8
|
164
|
+
require_paths:
|
165
|
+
- lib
|
166
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
167
|
+
requirements:
|
168
|
+
- - ">="
|
169
|
+
- !ruby/object:Gem::Version
|
170
|
+
version: "0"
|
171
|
+
version:
|
172
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
173
|
+
requirements:
|
174
|
+
- - ">="
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
version: "0"
|
177
|
+
version:
|
178
|
+
requirements: []
|
179
|
+
|
180
|
+
rubyforge_project: jekyll
|
181
|
+
rubygems_version: 1.2.0
|
182
|
+
signing_key:
|
183
|
+
specification_version: 2
|
184
|
+
summary: Jekyll is a simple, blog aware, static site generator.
|
185
|
+
test_files: []
|
186
|
+
|