tsion-jekyll 0.5.5

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.
Files changed (71) hide show
  1. data/.gitignore +6 -0
  2. data/History.txt +151 -0
  3. data/README.textile +42 -0
  4. data/Rakefile +92 -0
  5. data/VERSION.yml +5 -0
  6. data/bin/jekyll +150 -0
  7. data/features/create_sites.feature +46 -0
  8. data/features/embed_filters.feature +60 -0
  9. data/features/pagination.feature +40 -0
  10. data/features/permalinks.feature +65 -0
  11. data/features/post_data.feature +153 -0
  12. data/features/site_configuration.feature +63 -0
  13. data/features/site_data.feature +82 -0
  14. data/features/step_definitions/jekyll_steps.rb +136 -0
  15. data/features/support/env.rb +16 -0
  16. data/lib/jekyll.rb +85 -0
  17. data/lib/jekyll/albino.rb +122 -0
  18. data/lib/jekyll/converters/csv.rb +26 -0
  19. data/lib/jekyll/converters/mephisto.rb +79 -0
  20. data/lib/jekyll/converters/mt.rb +59 -0
  21. data/lib/jekyll/converters/textpattern.rb +50 -0
  22. data/lib/jekyll/converters/typo.rb +49 -0
  23. data/lib/jekyll/converters/wordpress.rb +54 -0
  24. data/lib/jekyll/convertible.rb +84 -0
  25. data/lib/jekyll/core_ext.rb +30 -0
  26. data/lib/jekyll/filters.rb +47 -0
  27. data/lib/jekyll/layout.rb +36 -0
  28. data/lib/jekyll/page.rb +112 -0
  29. data/lib/jekyll/pager.rb +45 -0
  30. data/lib/jekyll/post.rb +251 -0
  31. data/lib/jekyll/site.rb +265 -0
  32. data/lib/jekyll/tags/highlight.rb +56 -0
  33. data/lib/jekyll/tags/include.rb +31 -0
  34. data/test/helper.rb +27 -0
  35. data/test/source/_includes/sig.markdown +3 -0
  36. data/test/source/_layouts/default.html +27 -0
  37. data/test/source/_layouts/simple.html +1 -0
  38. data/test/source/_posts/2008-02-02-not-published.textile +8 -0
  39. data/test/source/_posts/2008-02-02-published.textile +8 -0
  40. data/test/source/_posts/2008-10-18-foo-bar.textile +8 -0
  41. data/test/source/_posts/2008-11-21-complex.textile +8 -0
  42. data/test/source/_posts/2008-12-03-permalinked-post.textile +9 -0
  43. data/test/source/_posts/2008-12-13-include.markdown +8 -0
  44. data/test/source/_posts/2009-01-27-array-categories.textile +10 -0
  45. data/test/source/_posts/2009-01-27-categories.textile +7 -0
  46. data/test/source/_posts/2009-01-27-category.textile +7 -0
  47. data/test/source/_posts/2009-03-12-hash-#1.markdown +6 -0
  48. data/test/source/_posts/2009-05-18-tag.textile +6 -0
  49. data/test/source/_posts/2009-05-18-tags.textile +9 -0
  50. data/test/source/_posts/2009-06-22-empty-yaml.textile +3 -0
  51. data/test/source/_posts/2009-06-22-no-yaml.textile +1 -0
  52. data/test/source/about.html +6 -0
  53. data/test/source/category/_posts/2008-9-23-categories.textile +6 -0
  54. data/test/source/contacts.html +5 -0
  55. data/test/source/css/screen.css +76 -0
  56. data/test/source/foo/_posts/bar/2008-12-12-topical-post.textile +8 -0
  57. data/test/source/index.html +22 -0
  58. data/test/source/sitemap.xml +23 -0
  59. data/test/source/win/_posts/2009-05-24-yaml-linebreak.markdown +7 -0
  60. data/test/source/z_category/_posts/2008-9-23-categories.textile +6 -0
  61. data/test/suite.rb +9 -0
  62. data/test/test_configuration.rb +29 -0
  63. data/test/test_filters.rb +49 -0
  64. data/test/test_generated_site.rb +40 -0
  65. data/test/test_page.rb +98 -0
  66. data/test/test_pager.rb +47 -0
  67. data/test/test_post.rb +302 -0
  68. data/test/test_site.rb +85 -0
  69. data/test/test_tags.rb +116 -0
  70. data/tsion-jekyll.gemspec +138 -0
  71. metadata +193 -0
@@ -0,0 +1,85 @@
1
+ require File.dirname(__FILE__) + '/helper'
2
+
3
+ class TestSite < Test::Unit::TestCase
4
+ context "creating sites" do
5
+ setup do
6
+ stub(Jekyll).configuration do
7
+ Jekyll::DEFAULTS.merge({'source' => source_dir, 'destination' => dest_dir})
8
+ end
9
+ @site = Site.new(Jekyll.configuration)
10
+ end
11
+
12
+ should "have an empty tag hash by default" do
13
+ assert_equal Hash.new, @site.tags
14
+ end
15
+
16
+ should "reset data before processing" do
17
+ clear_dest
18
+ @site.process
19
+ before_posts = @site.posts.length
20
+ before_layouts = @site.layouts.length
21
+ before_categories = @site.categories.length
22
+
23
+ @site.process
24
+ assert_equal before_posts, @site.posts.length
25
+ assert_equal before_layouts, @site.layouts.length
26
+ assert_equal before_categories, @site.categories.length
27
+ end
28
+
29
+ should "read layouts" do
30
+ @site.read_layouts
31
+ assert_equal ["default", "simple"].sort, @site.layouts.keys.sort
32
+ end
33
+
34
+ should "read posts" do
35
+ @site.read_posts('')
36
+ posts = Dir[source_dir('_posts', '*')]
37
+ assert_equal posts.size - 1, @site.posts.size
38
+ end
39
+
40
+ should "deploy payload" do
41
+ clear_dest
42
+ @site.process
43
+
44
+ posts = Dir[source_dir("**", "_posts", "*")]
45
+ categories = %w(bar baz category foo z_category publish_test win).sort
46
+
47
+ assert_equal posts.size - 1, @site.posts.size
48
+ assert_equal categories, @site.categories.keys.sort
49
+ assert_equal 4, @site.categories['foo'].size
50
+ end
51
+
52
+ should "filter entries" do
53
+ ent1 = %w[foo.markdown bar.markdown baz.markdown #baz.markdown#
54
+ .baz.markdow foo.markdown~]
55
+ ent2 = %w[.htaccess _posts bla.bla]
56
+
57
+ assert_equal %w[foo.markdown bar.markdown baz.markdown], @site.filter_entries(ent1)
58
+ assert_equal ent2, @site.filter_entries(ent2)
59
+ end
60
+
61
+ should "filter entries with exclude" do
62
+ excludes = %w[README TODO]
63
+ includes = %w[index.html site.css]
64
+
65
+ @site.exclude = excludes
66
+ assert_equal includes, @site.filter_entries(excludes + includes)
67
+ end
68
+
69
+ context 'with an invalid markdown processor in the configuration' do
70
+
71
+ should 'give a meaningful error message' do
72
+ bad_processor = 'not a processor name'
73
+ begin
74
+ Site.new(Jekyll.configuration.merge({ 'markdown' => bad_processor }))
75
+ flunk 'Invalid markdown processors should cause a failure on site creation'
76
+ rescue RuntimeError => e
77
+ assert e.to_s =~ /invalid|bad/i
78
+ assert e.to_s =~ %r{#{bad_processor}}
79
+ end
80
+ end
81
+
82
+ end
83
+
84
+ end
85
+ end
@@ -0,0 +1,116 @@
1
+ require File.dirname(__FILE__) + '/helper'
2
+
3
+ class TestTags < Test::Unit::TestCase
4
+
5
+ def create_post(content, override = {}, markdown = true)
6
+ stub(Jekyll).configuration do
7
+ Jekyll::DEFAULTS.merge({'pygments' => true}).merge(override)
8
+ end
9
+ site = Site.new(Jekyll.configuration)
10
+ info = { :filters => [Jekyll::Filters], :registers => { :site => site } }
11
+
12
+ if markdown
13
+ payload = {"content_type" => "markdown"}
14
+ else
15
+ payload = {"content_type" => "textile"}
16
+ end
17
+
18
+ @result = Liquid::Template.parse(content).render(payload, info)
19
+
20
+ if markdown
21
+ @result = site.markdown(@result)
22
+ else
23
+ @result = site.textile(@result)
24
+ end
25
+ end
26
+
27
+ def fill_post(code, override = {})
28
+ content = <<CONTENT
29
+ ---
30
+ title: This is a test
31
+ ---
32
+
33
+ This document results in a markdown error with maruku
34
+
35
+ {% highlight text %}
36
+ #{code}
37
+ {% endhighlight %}
38
+ CONTENT
39
+ create_post(content, override)
40
+ end
41
+
42
+ context "post content has highlight tag" do
43
+ setup do
44
+ fill_post("test")
45
+ end
46
+
47
+ should "not cause a markdown error" do
48
+ assert_no_match /markdown\-html\-error/, @result
49
+ end
50
+
51
+ should "render markdown with pygments line handling" do
52
+ assert_match %{<pre>test\n</pre>}, @result
53
+ end
54
+ end
55
+
56
+ context "post content has highlight tag with UTF character" do
57
+ setup do
58
+ fill_post("Æ")
59
+ end
60
+
61
+ should "render markdown with pygments line handling" do
62
+ assert_match %{<pre>Æ\n</pre>}, @result
63
+ end
64
+ end
65
+
66
+ context "simple post with markdown and pre tags" do
67
+ setup do
68
+ @content = <<CONTENT
69
+ ---
70
+ title: Maruku vs. RDiscount
71
+ ---
72
+
73
+ _FIGHT!_
74
+
75
+ {% highlight ruby %}
76
+ puts "3..2..1.."
77
+ {% endhighlight %}
78
+
79
+ *FINISH HIM*
80
+ CONTENT
81
+ end
82
+
83
+ context "using Textile" do
84
+ setup do
85
+ create_post(@content, {}, false)
86
+ end
87
+
88
+ # Broken in RedCloth 4.1.9
89
+ should "not textilize highlight block" do
90
+ assert_no_match %r{3\.\.2\.\.1\.\.&quot;</span><br />}, @result
91
+ end
92
+ end
93
+
94
+ context "using Maruku" do
95
+ setup do
96
+ create_post(@content)
97
+ end
98
+
99
+ should "parse correctly" do
100
+ assert_match %r{<em>FIGHT!</em>}, @result
101
+ assert_match %r{<em>FINISH HIM</em>}, @result
102
+ end
103
+ end
104
+
105
+ context "using RDiscount" do
106
+ setup do
107
+ create_post(@content, 'markdown' => 'rdiscount')
108
+ end
109
+
110
+ should "parse correctly" do
111
+ assert_match %r{<em>FIGHT!</em>}, @result
112
+ assert_match %r{<em>FINISH HIM</em>}, @result
113
+ end
114
+ end
115
+ end
116
+ end
@@ -0,0 +1,138 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{tsion-jekyll}
8
+ s.version = "0.5.5"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Tom Preston-Werner", "Scott Olson"]
12
+ s.date = %q{2009-12-29}
13
+ s.default_executable = %q{jekyll}
14
+ s.description = %q{Jekyll is a simple, blog aware, static site generator.}
15
+ s.email = %q{scott@scott-olson.org}
16
+ s.executables = ["jekyll"]
17
+ s.extra_rdoc_files = [
18
+ "README.textile"
19
+ ]
20
+ s.files = [
21
+ ".gitignore",
22
+ "History.txt",
23
+ "README.textile",
24
+ "Rakefile",
25
+ "VERSION.yml",
26
+ "bin/jekyll",
27
+ "features/create_sites.feature",
28
+ "features/embed_filters.feature",
29
+ "features/pagination.feature",
30
+ "features/permalinks.feature",
31
+ "features/post_data.feature",
32
+ "features/site_configuration.feature",
33
+ "features/site_data.feature",
34
+ "features/step_definitions/jekyll_steps.rb",
35
+ "features/support/env.rb",
36
+ "lib/jekyll.rb",
37
+ "lib/jekyll/albino.rb",
38
+ "lib/jekyll/converters/csv.rb",
39
+ "lib/jekyll/converters/mephisto.rb",
40
+ "lib/jekyll/converters/mt.rb",
41
+ "lib/jekyll/converters/textpattern.rb",
42
+ "lib/jekyll/converters/typo.rb",
43
+ "lib/jekyll/converters/wordpress.rb",
44
+ "lib/jekyll/convertible.rb",
45
+ "lib/jekyll/core_ext.rb",
46
+ "lib/jekyll/filters.rb",
47
+ "lib/jekyll/layout.rb",
48
+ "lib/jekyll/page.rb",
49
+ "lib/jekyll/pager.rb",
50
+ "lib/jekyll/post.rb",
51
+ "lib/jekyll/site.rb",
52
+ "lib/jekyll/tags/highlight.rb",
53
+ "lib/jekyll/tags/include.rb",
54
+ "test/helper.rb",
55
+ "test/source/_includes/sig.markdown",
56
+ "test/source/_layouts/default.html",
57
+ "test/source/_layouts/simple.html",
58
+ "test/source/_posts/2008-02-02-not-published.textile",
59
+ "test/source/_posts/2008-02-02-published.textile",
60
+ "test/source/_posts/2008-10-18-foo-bar.textile",
61
+ "test/source/_posts/2008-11-21-complex.textile",
62
+ "test/source/_posts/2008-12-03-permalinked-post.textile",
63
+ "test/source/_posts/2008-12-13-include.markdown",
64
+ "test/source/_posts/2009-01-27-array-categories.textile",
65
+ "test/source/_posts/2009-01-27-categories.textile",
66
+ "test/source/_posts/2009-01-27-category.textile",
67
+ "test/source/_posts/2009-03-12-hash-#1.markdown",
68
+ "test/source/_posts/2009-05-18-tag.textile",
69
+ "test/source/_posts/2009-05-18-tags.textile",
70
+ "test/source/_posts/2009-06-22-empty-yaml.textile",
71
+ "test/source/_posts/2009-06-22-no-yaml.textile",
72
+ "test/source/about.html",
73
+ "test/source/category/_posts/2008-9-23-categories.textile",
74
+ "test/source/contacts.html",
75
+ "test/source/css/screen.css",
76
+ "test/source/foo/_posts/bar/2008-12-12-topical-post.textile",
77
+ "test/source/index.html",
78
+ "test/source/sitemap.xml",
79
+ "test/source/win/_posts/2009-05-24-yaml-linebreak.markdown",
80
+ "test/source/z_category/_posts/2008-9-23-categories.textile",
81
+ "test/suite.rb",
82
+ "test/test_configuration.rb",
83
+ "test/test_filters.rb",
84
+ "test/test_generated_site.rb",
85
+ "test/test_page.rb",
86
+ "test/test_pager.rb",
87
+ "test/test_post.rb",
88
+ "test/test_site.rb",
89
+ "test/test_tags.rb",
90
+ "tsion-jekyll.gemspec"
91
+ ]
92
+ s.homepage = %q{http://github.com/tsion/jekyll}
93
+ s.rdoc_options = ["--charset=UTF-8"]
94
+ s.require_paths = ["lib"]
95
+ s.rubygems_version = %q{1.3.5}
96
+ s.summary = %q{Jekyll is a simple, blog aware, static site generator.}
97
+ s.test_files = [
98
+ "test/test_page.rb",
99
+ "test/helper.rb",
100
+ "test/test_generated_site.rb",
101
+ "test/test_filters.rb",
102
+ "test/test_tags.rb",
103
+ "test/test_post.rb",
104
+ "test/suite.rb",
105
+ "test/test_configuration.rb",
106
+ "test/test_pager.rb",
107
+ "test/test_site.rb"
108
+ ]
109
+
110
+ if s.respond_to? :specification_version then
111
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
112
+ s.specification_version = 3
113
+
114
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
115
+ s.add_runtime_dependency(%q<RedCloth>, [">= 4.2.1"])
116
+ s.add_runtime_dependency(%q<liquid>, [">= 1.9.0"])
117
+ s.add_runtime_dependency(%q<classifier>, [">= 1.3.1"])
118
+ s.add_runtime_dependency(%q<maruku>, [">= 0.5.9"])
119
+ s.add_runtime_dependency(%q<directory_watcher>, [">= 1.1.1"])
120
+ s.add_runtime_dependency(%q<open4>, [">= 0.9.6"])
121
+ else
122
+ s.add_dependency(%q<RedCloth>, [">= 4.2.1"])
123
+ s.add_dependency(%q<liquid>, [">= 1.9.0"])
124
+ s.add_dependency(%q<classifier>, [">= 1.3.1"])
125
+ s.add_dependency(%q<maruku>, [">= 0.5.9"])
126
+ s.add_dependency(%q<directory_watcher>, [">= 1.1.1"])
127
+ s.add_dependency(%q<open4>, [">= 0.9.6"])
128
+ end
129
+ else
130
+ s.add_dependency(%q<RedCloth>, [">= 4.2.1"])
131
+ s.add_dependency(%q<liquid>, [">= 1.9.0"])
132
+ s.add_dependency(%q<classifier>, [">= 1.3.1"])
133
+ s.add_dependency(%q<maruku>, [">= 0.5.9"])
134
+ s.add_dependency(%q<directory_watcher>, [">= 1.1.1"])
135
+ s.add_dependency(%q<open4>, [">= 0.9.6"])
136
+ end
137
+ end
138
+
metadata ADDED
@@ -0,0 +1,193 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tsion-jekyll
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.5
5
+ platform: ruby
6
+ authors:
7
+ - Tom Preston-Werner
8
+ - Scott Olson
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2009-12-29 00:00:00 -06: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.2.1
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
+ description: Jekyll is a simple, blog aware, static site generator.
77
+ email: scott@scott-olson.org
78
+ executables:
79
+ - jekyll
80
+ extensions: []
81
+
82
+ extra_rdoc_files:
83
+ - README.textile
84
+ files:
85
+ - .gitignore
86
+ - History.txt
87
+ - README.textile
88
+ - Rakefile
89
+ - VERSION.yml
90
+ - bin/jekyll
91
+ - features/create_sites.feature
92
+ - features/embed_filters.feature
93
+ - features/pagination.feature
94
+ - features/permalinks.feature
95
+ - features/post_data.feature
96
+ - features/site_configuration.feature
97
+ - features/site_data.feature
98
+ - features/step_definitions/jekyll_steps.rb
99
+ - features/support/env.rb
100
+ - lib/jekyll.rb
101
+ - lib/jekyll/albino.rb
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/pager.rb
114
+ - lib/jekyll/post.rb
115
+ - lib/jekyll/site.rb
116
+ - lib/jekyll/tags/highlight.rb
117
+ - lib/jekyll/tags/include.rb
118
+ - test/helper.rb
119
+ - test/source/_includes/sig.markdown
120
+ - test/source/_layouts/default.html
121
+ - test/source/_layouts/simple.html
122
+ - test/source/_posts/2008-02-02-not-published.textile
123
+ - test/source/_posts/2008-02-02-published.textile
124
+ - test/source/_posts/2008-10-18-foo-bar.textile
125
+ - test/source/_posts/2008-11-21-complex.textile
126
+ - test/source/_posts/2008-12-03-permalinked-post.textile
127
+ - test/source/_posts/2008-12-13-include.markdown
128
+ - test/source/_posts/2009-01-27-array-categories.textile
129
+ - test/source/_posts/2009-01-27-categories.textile
130
+ - test/source/_posts/2009-01-27-category.textile
131
+ - test/source/_posts/2009-03-12-hash-#1.markdown
132
+ - test/source/_posts/2009-05-18-tag.textile
133
+ - test/source/_posts/2009-05-18-tags.textile
134
+ - test/source/_posts/2009-06-22-empty-yaml.textile
135
+ - test/source/_posts/2009-06-22-no-yaml.textile
136
+ - test/source/about.html
137
+ - test/source/category/_posts/2008-9-23-categories.textile
138
+ - test/source/contacts.html
139
+ - test/source/css/screen.css
140
+ - test/source/foo/_posts/bar/2008-12-12-topical-post.textile
141
+ - test/source/index.html
142
+ - test/source/sitemap.xml
143
+ - test/source/win/_posts/2009-05-24-yaml-linebreak.markdown
144
+ - test/source/z_category/_posts/2008-9-23-categories.textile
145
+ - test/suite.rb
146
+ - test/test_configuration.rb
147
+ - test/test_filters.rb
148
+ - test/test_generated_site.rb
149
+ - test/test_page.rb
150
+ - test/test_pager.rb
151
+ - test/test_post.rb
152
+ - test/test_site.rb
153
+ - test/test_tags.rb
154
+ - tsion-jekyll.gemspec
155
+ has_rdoc: true
156
+ homepage: http://github.com/tsion/jekyll
157
+ licenses: []
158
+
159
+ post_install_message:
160
+ rdoc_options:
161
+ - --charset=UTF-8
162
+ require_paths:
163
+ - lib
164
+ required_ruby_version: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - ">="
167
+ - !ruby/object:Gem::Version
168
+ version: "0"
169
+ version:
170
+ required_rubygems_version: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - ">="
173
+ - !ruby/object:Gem::Version
174
+ version: "0"
175
+ version:
176
+ requirements: []
177
+
178
+ rubyforge_project:
179
+ rubygems_version: 1.3.5
180
+ signing_key:
181
+ specification_version: 3
182
+ summary: Jekyll is a simple, blog aware, static site generator.
183
+ test_files:
184
+ - test/test_page.rb
185
+ - test/helper.rb
186
+ - test/test_generated_site.rb
187
+ - test/test_filters.rb
188
+ - test/test_tags.rb
189
+ - test/test_post.rb
190
+ - test/suite.rb
191
+ - test/test_configuration.rb
192
+ - test/test_pager.rb
193
+ - test/test_site.rb