tigefa 1.0.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (249) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.markdown +91 -0
  3. data/Gemfile +2 -0
  4. data/History.markdown +871 -0
  5. data/LICENSE +15 -14
  6. data/README.markdown +59 -0
  7. data/Rakefile +298 -0
  8. data/bin/tigefa +158 -0
  9. data/cucumber.yml +3 -0
  10. data/features/create_sites.feature +141 -0
  11. data/features/data.feature +65 -0
  12. data/features/drafts.feature +25 -0
  13. data/features/embed_filters.feature +60 -0
  14. data/features/include_tag.feature +57 -0
  15. data/features/markdown.feature +67 -0
  16. data/features/pagination.feature +82 -0
  17. data/features/permalinks.feature +85 -0
  18. data/features/post_data.feature +214 -0
  19. data/features/post_excerpts.feature +50 -0
  20. data/features/site_configuration.feature +235 -0
  21. data/features/site_data.feature +107 -0
  22. data/features/step_definitions/tigefa_steps.rb +189 -0
  23. data/features/support/env.rb +75 -0
  24. data/lib/site_template/.gitignore +1 -0
  25. data/lib/site_template/_config.yml +3 -0
  26. data/lib/site_template/_layouts/default.html +44 -0
  27. data/lib/site_template/_layouts/post.html +9 -0
  28. data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +24 -0
  29. data/lib/site_template/css/main.css +160 -0
  30. data/lib/site_template/css/syntax.css +60 -0
  31. data/lib/site_template/index.html +13 -0
  32. data/lib/tigefa/cleaner.rb +73 -0
  33. data/lib/tigefa/command.rb +27 -0
  34. data/lib/tigefa/commands/build.rb +70 -0
  35. data/lib/tigefa/commands/doctor.rb +67 -0
  36. data/lib/tigefa/commands/new.rb +67 -0
  37. data/lib/tigefa/commands/serve.rb +65 -0
  38. data/lib/tigefa/configuration.rb +238 -0
  39. data/lib/tigefa/converter.rb +48 -0
  40. data/lib/tigefa/converters/identity.rb +21 -0
  41. data/lib/tigefa/converters/markdown/kramdown_parser.rb +29 -0
  42. data/lib/tigefa/converters/markdown/maruku_parser.rb +56 -0
  43. data/lib/tigefa/converters/markdown/rdiscount_parser.rb +37 -0
  44. data/lib/tigefa/converters/markdown/redcarpet_parser.rb +70 -0
  45. data/lib/tigefa/converters/markdown.rb +43 -0
  46. data/lib/tigefa/converters/textile.rb +50 -0
  47. data/lib/tigefa/convertible.rb +174 -0
  48. data/lib/tigefa/core_ext.rb +90 -0
  49. data/lib/tigefa/deprecator.rb +36 -0
  50. data/lib/tigefa/draft.rb +35 -0
  51. data/lib/tigefa/entry_filter.rb +35 -0
  52. data/lib/tigefa/errors.rb +4 -0
  53. data/lib/tigefa/excerpt.rb +113 -0
  54. data/lib/tigefa/filters.rb +174 -0
  55. data/lib/tigefa/generator.rb +4 -0
  56. data/lib/tigefa/generators/pagination.rb +217 -0
  57. data/lib/tigefa/layout.rb +45 -0
  58. data/lib/tigefa/mime.types +85 -0
  59. data/lib/tigefa/page.rb +160 -0
  60. data/lib/tigefa/plugin.rb +75 -0
  61. data/lib/tigefa/post.rb +312 -0
  62. data/lib/tigefa/related_posts.rb +59 -0
  63. data/lib/tigefa/site.rb +427 -0
  64. data/lib/tigefa/static_file.rb +70 -0
  65. data/lib/tigefa/stevenson.rb +89 -0
  66. data/lib/tigefa/tags/gist.rb +48 -0
  67. data/lib/tigefa/tags/highlight.rb +85 -0
  68. data/lib/tigefa/tags/include.rb +134 -0
  69. data/lib/tigefa/tags/post_url.rb +63 -0
  70. data/lib/tigefa/url.rb +69 -0
  71. data/lib/tigefa.rb +98 -4
  72. data/script/bootstrap +2 -0
  73. data/site/.gitignore +4 -0
  74. data/site/CNAME +1 -0
  75. data/site/README +1 -0
  76. data/site/_config.yml +6 -0
  77. data/site/_includes/analytics.html +32 -0
  78. data/site/_includes/docs_contents.html +16 -0
  79. data/site/_includes/docs_contents_mobile.html +23 -0
  80. data/site/_includes/docs_option.html +11 -0
  81. data/site/_includes/docs_ul.html +20 -0
  82. data/site/_includes/footer.html +15 -0
  83. data/site/_includes/header.html +18 -0
  84. data/site/_includes/news_contents.html +23 -0
  85. data/site/_includes/news_contents_mobile.html +11 -0
  86. data/site/_includes/news_item.html +24 -0
  87. data/site/_includes/primary-nav-items.html +14 -0
  88. data/site/_includes/section_nav.html +22 -0
  89. data/site/_includes/top.html +17 -0
  90. data/site/_layouts/default.html +12 -0
  91. data/site/_layouts/docs.html +23 -0
  92. data/site/_layouts/news.html +19 -0
  93. data/site/_layouts/news_item.html +27 -0
  94. data/site/_posts/2013-05-06-jekyll-1-0-0-released.markdown +23 -0
  95. data/site/_posts/2013-05-08-jekyll-1-0-1-released.markdown +27 -0
  96. data/site/_posts/2013-05-12-jekyll-1-0-2-released.markdown +28 -0
  97. data/site/_posts/2013-06-07-jekyll-1-0-3-released.markdown +25 -0
  98. data/site/_posts/2013-07-14-jekyll-1-1-0-released.markdown +27 -0
  99. data/site/_posts/2013-07-24-jekyll-1-1-1-released.markdown +31 -0
  100. data/site/_posts/2013-07-25-jekyll-1-0-4-released.markdown +20 -0
  101. data/site/_posts/2013-07-25-jekyll-1-1-2-released.markdown +20 -0
  102. data/site/_posts/2013-09-06-jekyll-1-2-0-released.markdown +23 -0
  103. data/site/_posts/2013-09-14-jekyll-1-2-1-released.markdown +19 -0
  104. data/site/_posts/2013-10-28-jekyll-1-3-0-rc1-released.markdown +19 -0
  105. data/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown +43 -0
  106. data/site/_posts/2013-11-26-jekyll-1-3-1-released.markdown +21 -0
  107. data/site/_posts/2013-12-07-jekyll-1-4-0-released.markdown +30 -0
  108. data/site/_posts/2013-12-16-jekyll-1-4-2-released.markdown +18 -0
  109. data/site/_posts/2014-01-13-jekyll-1-4-3-released.markdown +27 -0
  110. data/site/css/gridism.css +110 -0
  111. data/site/css/normalize.css +1 -0
  112. data/site/css/pygments.css +70 -0
  113. data/site/css/style.css +946 -0
  114. data/site/docs/configuration.md +375 -0
  115. data/site/docs/contributing.md +128 -0
  116. data/site/docs/datafiles.md +63 -0
  117. data/site/docs/deployment-methods.md +109 -0
  118. data/site/docs/drafts.md +21 -0
  119. data/site/docs/extras.md +56 -0
  120. data/site/docs/frontmatter.md +180 -0
  121. data/site/docs/github-pages.md +91 -0
  122. data/site/docs/heroku.md +9 -0
  123. data/site/docs/history.md +866 -0
  124. data/site/docs/index.md +52 -0
  125. data/site/docs/installation.md +76 -0
  126. data/site/docs/migrations.md +11 -0
  127. data/site/docs/pages.md +86 -0
  128. data/site/docs/pagination.md +211 -0
  129. data/site/docs/permalinks.md +180 -0
  130. data/site/docs/plugins.md +534 -0
  131. data/site/docs/posts.md +181 -0
  132. data/site/docs/quickstart.md +32 -0
  133. data/site/docs/resources.md +46 -0
  134. data/site/docs/sites.md +29 -0
  135. data/site/docs/structure.md +190 -0
  136. data/site/docs/templates.md +339 -0
  137. data/site/docs/troubleshooting.md +150 -0
  138. data/site/docs/upgrading.md +146 -0
  139. data/site/docs/usage.md +63 -0
  140. data/site/docs/variables.md +322 -0
  141. data/site/favicon.png +0 -0
  142. data/site/feed.xml +36 -0
  143. data/site/freenode.txt +1 -0
  144. data/site/img/article-footer.png +0 -0
  145. data/site/img/footer-arrow.png +0 -0
  146. data/site/img/footer-logo.png +0 -0
  147. data/site/img/logo-2x.png +0 -0
  148. data/site/img/octojekyll.png +0 -0
  149. data/site/img/tube.png +0 -0
  150. data/site/img/tube1x.png +0 -0
  151. data/site/index.html +90 -0
  152. data/site/js/modernizr-2.5.3.min.js +4 -0
  153. data/site/news/index.html +10 -0
  154. data/site/news/releases/index.html +10 -0
  155. data/test/fixtures/broken_front_matter1.erb +5 -0
  156. data/test/fixtures/broken_front_matter2.erb +4 -0
  157. data/test/fixtures/broken_front_matter3.erb +7 -0
  158. data/test/fixtures/exploit_front_matter.erb +4 -0
  159. data/test/fixtures/front_matter.erb +4 -0
  160. data/test/helper.rb +65 -0
  161. data/test/source/+/foo.md +7 -0
  162. data/test/source/.htaccess +8 -0
  163. data/test/source/_config.dev.toml +2 -0
  164. data/test/source/_data/languages.yml +2 -0
  165. data/test/source/_data/members.yaml +7 -0
  166. data/test/source/_data/products.yml +1 -0
  167. data/test/source/_includes/params.html +7 -0
  168. data/test/source/_includes/sig.markdown +3 -0
  169. data/test/source/_includes/tmp +1 -0
  170. data/test/source/_layouts/default.html +27 -0
  171. data/test/source/_layouts/post/simple.html +1 -0
  172. data/test/source/_layouts/simple.html +1 -0
  173. data/test/source/_plugins/dummy.rb +8 -0
  174. data/test/source/_posts/2008-02-02-not-published.textile +8 -0
  175. data/test/source/_posts/2008-02-02-published.textile +8 -0
  176. data/test/source/_posts/2008-10-18-foo-bar.textile +8 -0
  177. data/test/source/_posts/2008-11-21-complex.textile +8 -0
  178. data/test/source/_posts/2008-12-03-permalinked-post.textile +9 -0
  179. data/test/source/_posts/2008-12-13-include.markdown +8 -0
  180. data/test/source/_posts/2009-01-27-array-categories.textile +10 -0
  181. data/test/source/_posts/2009-01-27-categories.textile +7 -0
  182. data/test/source/_posts/2009-01-27-category.textile +7 -0
  183. data/test/source/_posts/2009-01-27-empty-categories.textile +7 -0
  184. data/test/source/_posts/2009-01-27-empty-category.textile +7 -0
  185. data/test/source/_posts/2009-03-12-hash-#1.markdown +6 -0
  186. data/test/source/_posts/2009-05-18-empty-tag.textile +6 -0
  187. data/test/source/_posts/2009-05-18-empty-tags.textile +6 -0
  188. data/test/source/_posts/2009-05-18-tag.textile +6 -0
  189. data/test/source/_posts/2009-05-18-tags.textile +9 -0
  190. data/test/source/_posts/2009-06-22-empty-yaml.textile +3 -0
  191. data/test/source/_posts/2009-06-22-no-yaml.textile +1 -0
  192. data/test/source/_posts/2010-01-08-triple-dash.markdown +5 -0
  193. data/test/source/_posts/2010-01-09-date-override.textile +7 -0
  194. data/test/source/_posts/2010-01-09-time-override.textile +7 -0
  195. data/test/source/_posts/2010-01-09-timezone-override.textile +7 -0
  196. data/test/source/_posts/2010-01-16-override-data.textile +4 -0
  197. data/test/source/_posts/2011-04-12-md-extension.md +7 -0
  198. data/test/source/_posts/2011-04-12-text-extension.text +0 -0
  199. data/test/source/_posts/2013-01-02-post-excerpt.markdown +14 -0
  200. data/test/source/_posts/2013-01-12-nil-layout.textile +6 -0
  201. data/test/source/_posts/2013-01-12-no-layout.textile +5 -0
  202. data/test/source/_posts/2013-03-19-not-a-post.markdown/.gitkeep +0 -0
  203. data/test/source/_posts/2013-04-11-custom-excerpt.markdown +10 -0
  204. data/test/source/_posts/2013-05-10-number-category.textile +7 -0
  205. data/test/source/_posts/2013-07-22-post-excerpt-with-layout.markdown +23 -0
  206. data/test/source/_posts/2013-08-01-mkdn-extension.mkdn +0 -0
  207. data/test/source/_posts/2014-01-06-permalink-traversal.md +5 -0
  208. data/test/source/_posts/es/2008-11-21-nested.textile +8 -0
  209. data/test/source/about.html +6 -0
  210. data/test/source/category/_posts/2008-9-23-categories.textile +6 -0
  211. data/test/source/contacts/bar.html +5 -0
  212. data/test/source/contacts/index.html +5 -0
  213. data/test/source/contacts.html +5 -0
  214. data/test/source/css/screen.css +76 -0
  215. data/test/source/deal.with.dots.html +7 -0
  216. data/test/source/exploit.md +5 -0
  217. data/test/source/foo/_posts/bar/2008-12-12-topical-post.textile +8 -0
  218. data/test/source/index.html +22 -0
  219. data/test/source/products.yml +4 -0
  220. data/test/source/sitemap.xml +32 -0
  221. data/test/source/symlink-test/_data +1 -0
  222. data/test/source/symlink-test/symlinked-dir +1 -0
  223. data/test/source/symlink-test/symlinked-file +1 -0
  224. data/test/source/win/_posts/2009-05-24-yaml-linebreak.markdown +7 -0
  225. data/test/source/z_category/_posts/2008-9-23-categories.textile +6 -0
  226. data/test/suite.rb +11 -0
  227. data/test/test_command.rb +39 -0
  228. data/test/test_configuration.rb +181 -0
  229. data/test/test_convertible.rb +51 -0
  230. data/test/test_core_ext.rb +88 -0
  231. data/test/test_entry_filter.rb +74 -0
  232. data/test/test_excerpt.rb +78 -0
  233. data/test/test_filters.rb +113 -0
  234. data/test/test_generated_site.rb +83 -0
  235. data/test/test_kramdown.rb +62 -0
  236. data/test/test_new_command.rb +104 -0
  237. data/test/test_page.rb +212 -0
  238. data/test/test_pager.rb +116 -0
  239. data/test/test_post.rb +592 -0
  240. data/test/test_rdiscount.rb +22 -0
  241. data/test/test_redcarpet.rb +61 -0
  242. data/test/test_redcloth.rb +86 -0
  243. data/test/test_related_posts.rb +47 -0
  244. data/test/test_site.rb +333 -0
  245. data/test/test_tags.rb +490 -0
  246. data/test/test_url.rb +28 -0
  247. data/tigefa.gemspec +306 -0
  248. metadata +575 -45
  249. data/README.md +0 -4
data/History.markdown ADDED
@@ -0,0 +1,871 @@
1
+ ## HEAD
2
+
3
+ ### Major Enhancements
4
+
5
+ ### Minor Enhancements
6
+
7
+ ### Bug Fixes
8
+
9
+ ### Development Fixes
10
+
11
+ ### Site Enhancements
12
+
13
+ ## 1.4.3 / 2014-01-13
14
+
15
+ ### Bug Fixes
16
+
17
+ * Patch show-stopping security vulnerabilities (#1944)
18
+
19
+ ## 1.4.2 / 2013-12-16
20
+
21
+ ### Bug Fixes
22
+ * Turn on Maruku fenced code blocks by default (#1830)
23
+
24
+ ## 1.4.1 / 2013-12-09
25
+
26
+ ### Bug Fixes
27
+ * Don't allow nil entries when loading posts (#1796)
28
+
29
+ ## 1.4.0 / 2013-12-07
30
+
31
+ ### Major Enhancements
32
+ * Add support for TOML config files (#1765)
33
+
34
+ ### Minor Enhancements
35
+ * Sort plugins as a way to establish a load order (#1682)
36
+ * Update Maruku to 0.7.0 (#1775)
37
+
38
+ ### Bug Fixes
39
+ * Add a space between two words in a Pagination warning message (#1769)
40
+ * Upgrade `toml` gem to `v0.1.0` to maintain compat with Ruby 1.8.7 (#1778)
41
+
42
+ ### Development Fixes
43
+ * Remove some whitespace in the code (#1755)
44
+ * Remove some duplication in the reading of posts and drafts (#1779)
45
+
46
+ ### Site Enhancements
47
+ * Fixed case of a word in the Jekyll v1.3.0 release post (#1762)
48
+ * Fixed the mime type for the favicon (#1772)
49
+
50
+ ## 1.3.1 / 2013-11-26
51
+
52
+ ### Minor Enhancements
53
+ * Add a `--prefix` option to passthrough for the importers (#1669)
54
+ * Push the paginator plugin lower in the plugin priority order so
55
+ other plugins run before it (#1759)
56
+
57
+ ### Bug Fixes
58
+ * Fix the include tag when ran in a loop (#1726)
59
+ * Fix errors when using `--watch` on 1.8.7 (#1730)
60
+ * Specify where the include is called from if an included file is
61
+ missing (#1746)
62
+
63
+ ### Development Fixes
64
+ * Extract `Site#filter_entries` into its own object (#1697)
65
+ * Enable Travis' bundle caching (#1734)
66
+ * Remove trailing whitespace in some files (#1736)
67
+ * Fix a duplicate test name (#1754)
68
+
69
+ ### Site Enhancements
70
+ * Update link to example Rakefile to point to specific commit (#1741)
71
+ * Fix drafts docs to indicate that draft time is based on file modification
72
+ time, not `Time.now` (#1695)
73
+ * Add `jekyll-monthly-archive-plugin` and `jekyll-category-archive-plugin` to
74
+ list of third-party plugins (#1693)
75
+ * Add `jekyll-asset-path-plugin` to list of third-party plugins (#1670)
76
+ * Add `emoji-for-jekyll` to list of third-part plugins (#1708)
77
+ * Fix previous section link on plugins page to point to pagination page (#1707)
78
+ * Add `org-mode` converter plugin to third-party plugins (#1711)
79
+ * Point "Blog migrations" page to http://import.jekyllrb.com (#1732)
80
+ * Add docs for `post_url` when posts are in subdirectories (#1718)
81
+ * Update the docs to point to `example.com` (#1448)
82
+
83
+ ## 1.3.0 / 2013-11-04
84
+
85
+ ### Major Enhancements
86
+ * Add support for adding data as YAML files under a site's `_data`
87
+ directory (#1003)
88
+ * Allow variables to be used with `include` tags (#1495)
89
+ * Allow using gems for plugin management (#1557)
90
+
91
+ ### Minor Enhancements
92
+ * Decrease the specificity in the site template CSS (#1574)
93
+ * Add `encoding` configuration option (#1449)
94
+ * Provide better error handling for Jekyll's custom Liquid tags
95
+ (#1514)
96
+ * If an included file causes a Liquid error, add the path to the
97
+ include file that caused the error to the error message (#1596)
98
+ * If a layout causes a Liquid error, change the error message so that
99
+ we know it comes from the layout (#1601)
100
+ * Update Kramdown dependency to `~> 1.2` (#1610)
101
+ * Update `safe_yaml` dependency to `~> 0.9.7` (#1602)
102
+ * Allow layouts to be in subfolders like includes (#1622)
103
+ * Switch to listen for site watching while serving (#1589)
104
+ * Add a `json` liquid filter to be used in sites (#1651)
105
+ * Point people to the migration docs when the `jekyll-import` gem is
106
+ missing (#1662)
107
+
108
+ ### Bug Fixes
109
+ * Fix up matching against source and destination when the two
110
+ locations are similar (#1556)
111
+ * Fix the missing `pathname` require in certain cases (#1255)
112
+ * Use `+` instead of `Array#concat` when building `Post` attribute list (#1571)
113
+ * Print server address when launching a server (#1586)
114
+ * Downgrade to Maruku `~> 0.6.0` in order to avoid changes in rendering (#1598)
115
+ * Fix error with failing include tag when variable was file name (#1613)
116
+ * Downcase lexers before passing them to pygments (#1615)
117
+ * Capitalize the short verbose switch because it conflicts with the
118
+ built-in Commander switch (#1660)
119
+ * Fix compatibility with 1.8.x (#1665)
120
+ * Fix an error with the new file watching code due to library version
121
+ incompatibilities (#1687)
122
+
123
+ ### Development Fixes
124
+ * Add coverage reporting with Coveralls (#1539)
125
+ * Refactor the Liquid `include` tag (#1490)
126
+ * Update launchy dependency to `~> 2.3` (#1608)
127
+ * Update rr dependency to `~> 1.1` (#1604)
128
+ * Update cucumber dependency to `~> 1.3` (#1607)
129
+ * Update coveralls dependency to `~> 0.7.0` (#1606)
130
+ * Update rake dependency to `~> 10.1` (#1603)
131
+ * Clean up `site.rb` comments to be more concise/uniform (#1616)
132
+ * Use the master branch for the build badge in the readme (#1636)
133
+ * Refactor Site#render (#1638)
134
+ * Remove duplication in command line options (#1637)
135
+ * Add tests for all the coderay options (#1543)
136
+ * Improve some of the cucumber test code (#1493)
137
+ * Improve comparisons of timestamps by ignoring the seconds (#1582)
138
+
139
+ ### Site Enhancements
140
+ * Fix params for `JekyllImport::WordPress.process` arguments (#1554)
141
+ * Add `jekyll-suggested-tweet` to list of third-party plugins (#1555)
142
+ * Link to Liquid's docs for tags and filters (#1553)
143
+ * Add note about installing Xcode on the Mac in the Installation docs (#1561)
144
+ * Simplify/generalize pagination docs (#1577)
145
+ * Add documentation for the new data sources feature (#1503)
146
+ * Add more information on how to create generators (#1590, #1592)
147
+ * Improve the instructions for mimicking GitHub Flavored Markdown
148
+ (#1614)
149
+ * Add `jekyll-import` warning note of missing dependencies (#1626)
150
+ * Fix grammar in the Usage section (#1635)
151
+ * Add documentation for the use of gems as plugins (#1656)
152
+ * Document the existence of a few additional plugins (#1405)
153
+ * Document that the `date_to_string` always returns a two digit day (#1663)
154
+ * Fix navigation in the "Working with Drafts" page (#1667)
155
+ * Fix an error with the data documentation (#1691)
156
+
157
+ ## 1.2.1 / 2013-09-14
158
+
159
+ ### Minor Enhancements
160
+ * Print better messages for detached server. Mute output on detach. (#1518)
161
+ * Disable reverse lookup when running `jekyll serve` (#1363)
162
+ * Upgrade RedCarpet dependency to `~> 2.3.0` (#1515)
163
+ * Upgrade to Liquid `>= 2.5.2, < 2.6` (#1536)
164
+
165
+ ### Bug Fixes
166
+ * Fix file discrepancy in gemspec (#1522)
167
+ * Force rendering of Include tag (#1525)
168
+
169
+ ### Development Fixes
170
+ * Add a rake task to generate a new release post (#1404)
171
+ * Mute LSI output in tests (#1531)
172
+ * Update contributor documentation (#1537)
173
+
174
+ ### Site Enhancements
175
+ * Fix a couple of validation errors on the site (#1511)
176
+ * Make navigation menus reusable (#1507)
177
+ * Fix link to History page from Release v1.2.0 notes post.
178
+ * Fix markup in History file for command line options (#1512)
179
+ * Expand 1.2 release post title to 1.2.0 (#1516)
180
+
181
+ ## 1.2.0 / 2013-09-06
182
+
183
+ ### Major Enhancements
184
+ * Disable automatically-generated excerpts when `excerpt_separator` is `""`. (#1386)
185
+ * Add checking for URL conflicts when running `jekyll doctor` (#1389)
186
+
187
+ ### Minor Enhancements
188
+ * Catch and fix invalid `paginate` values (#1390)
189
+ * Remove superfluous `div.container` from the default html template for
190
+ `jekyll new` (#1315)
191
+ * Add `-D` short-form switch for the drafts option (#1394)
192
+ * Update the links in the site template for Twitter and GitHub (#1400)
193
+ * Update dummy email address to example.com domain (#1408)
194
+ * Update normalize.css to v2.1.2 and minify; add rake task to update
195
+ normalize.css with greater ease. (#1430)
196
+ * Add the ability to detach the server ran by `jekyll serve` from it's
197
+ controlling terminal (#1443)
198
+ * Improve permalink generation for URLs with special characters (#944)
199
+ * Expose the current Jekyll version to posts and pages via a new
200
+ `jekyll.version` variable (#1481)
201
+
202
+ ### Bug Fixes
203
+ * Markdown extension matching matches only exact matches (#1382)
204
+ * Fixed NoMethodError when message passed to `Stevenson#message` is nil (#1388)
205
+ * Use binary mode when writing file (#1364)
206
+ * Fix 'undefined method `encoding` for "mailto"' errors w/ Ruby 1.8 and
207
+ Kramdown > 0.14.0 (#1397)
208
+ * Do not force the permalink to be a dir if it ends on .html (#963)
209
+ * When a Liquid Exception is caught, show the full path rel. to site source (#1415)
210
+ * Properly read in the config options when serving the docs locally
211
+ (#1444)
212
+ * Fixed `--layouts` option for `build` and `serve` commands (#1458)
213
+ * Remove kramdown as a runtime dependency since it's optional (#1498)
214
+ * Provide proper error handling for invalid file names in the include
215
+ tag (#1494)
216
+
217
+ ### Development Fixes
218
+ * Remove redundant argument to
219
+ Jekyll::Commands::New#scaffold_post_content (#1356)
220
+ * Add new dependencies to the README (#1360)
221
+ * Fix link to contributing page in README (#1424)
222
+ * Update TomDoc in Pager#initialize to match params (#1441)
223
+ * Refactor `Site#cleanup` into `Jekyll::Site::Cleaner` class (#1429)
224
+ * Several other small minor refactorings (#1341)
225
+ * Ignore `_site` in jekyllrb.com deploy (#1480)
226
+ * Add Gem version and dependency badge to README (#1497)
227
+
228
+ ### Site Enhancements
229
+ * Add info about new releases (#1353)
230
+ * Update plugin list with jekyll-rss plugin (#1354)
231
+ * Update the site list page with Ruby's official site (#1358)
232
+ * Add `jekyll-ditaa` to list of third-party plugins (#1370)
233
+ * Add `postfiles` to list of third-party plugins (#1373)
234
+ * For internal links, use full path including trailing `/` (#1411)
235
+ * Use curly apostrophes in the docs (#1419)
236
+ * Update the docs for Redcarpet in Jekyll (#1418)
237
+ * Add `pluralize` and `reading_time` filters to docs (#1439)
238
+ * Fix markup for the Kramdown options (#1445)
239
+ * Fix typos in the History file (#1454)
240
+ * Add trailing slash to site's post URL (#1462)
241
+ * Clarify that `--config` will take multiple files (#1474)
242
+ * Fix docs/templates.md private gist example (#1477)
243
+ * Use `site.repository` for Jekyll's GitHub URL (#1463)
244
+ * Add `jekyll-pageless-redirects` to list of third-party plugins (#1486)
245
+ * Clarify that `date_to_xmlschema` returns an ISO 8601 string (#1488)
246
+ * Add `jekyll-good-include` to list of third-party plugins (#1491)
247
+ * XML escape the blog post title in our feed (#1501)
248
+ * Add `jekyll-toc-generator` to list of third-party plugins (#1506)
249
+
250
+ ## 1.1.2 / 2013-07-25
251
+
252
+ ### Bug Fixes
253
+ * Require Liquid 2.5.1 (#1349)
254
+
255
+ ## 1.1.1 / 2013-07-24
256
+
257
+ ### Minor Enhancements
258
+ * Remove superfluous `table` selector from main.css in `jekyll new` template (#1328)
259
+ * Abort with non-zero exit codes (#1338)
260
+
261
+ ### Bug Fixes
262
+ * Fix up the rendering of excerpts (#1339)
263
+
264
+ ### Site Enhancements
265
+ * Add Jekyll Image Tag to the plugins list (#1306)
266
+ * Remove erroneous statement that `site.pages` are sorted alphabetically.
267
+ * Add info about the `_drafts` directory to the directory structure
268
+ docs (#1320)
269
+ * Improve the layout of the plugin listing by organizing it into
270
+ categories (#1310)
271
+ * Add generator-jekyllrb and grunt-jekyll to plugins page (#1330)
272
+ * Mention Kramdown as option for markdown parser on Extras page (#1318)
273
+ * Update Quick-Start page to include reminder that all requirements must be installed (#1327)
274
+ * Change filename in `include` example to an HTML file so as not to indicate that Jekyll
275
+ will automatically convert them. (#1303)
276
+ * Add an RSS feed for commits to Jekyll (#1343)
277
+
278
+ ## 1.1.0 / 2013-07-14
279
+
280
+ ### Major Enhancements
281
+ * Add `docs` subcommand to read Jekyll's docs when offline. (#1046)
282
+ * Support passing parameters to templates in `include` tag (#1204)
283
+ * Add support for Liquid tags to post excerpts (#1302)
284
+
285
+ ### Minor Enhancements
286
+ * Search the hierarchy of pagination path up to site root to determine template page for
287
+ pagination. (#1198)
288
+ * Add the ability to generate a new Jekyll site without a template (#1171)
289
+ * Use redcarpet as the default markdown engine in newly generated
290
+ sites (#1245, #1247)
291
+ * Add `redcarpet` as a runtime dependency so `jekyll build` works out-of-the-box for new
292
+ sites. (#1247)
293
+ * In the generated site, remove files that will be replaced by a
294
+ directory (#1118)
295
+ * Fail loudly if a user-specified configuration file doesn't exist (#1098)
296
+ * Allow for all options for Kramdown HTML Converter (#1201)
297
+
298
+ ### Bug Fixes
299
+ * Fix pagination in subdirectories. (#1198)
300
+ * Fix an issue with directories and permalinks that have a plus sign
301
+ (+) in them (#1215)
302
+ * Provide better error reporting when generating sites (#1253)
303
+ * Latest posts first in non-LSI `related_posts` (#1271)
304
+
305
+ ### Development Fixes
306
+ * Merge the theme and layout cucumber steps into one step (#1151)
307
+ * Restrict activesupport dependency to pre-4.0.0 to maintain compatibility with `<= 1.9.2`
308
+ * Include/exclude deprecation handling simplification (#1284)
309
+ * Convert README to Markdown. (#1267)
310
+ * Refactor Jekyll::Site (#1144)
311
+
312
+ ### Site Enhancements
313
+ * Add "News" section for release notes, along with an RSS feed (#1093, #1285, #1286)
314
+ * Add "History" page.
315
+ * Restructured docs sections to include "Meta" section.
316
+ * Add message to "Templates" page that specifies that Python must be installed in order
317
+ to use Pygments. (#1182)
318
+ * Update link to the official Maruku repo (#1175)
319
+ * Add documentation about `paginate_path` to "Templates" page in docs (#1129)
320
+ * Give the quick-start guide its own page (#1191)
321
+ * Update ProTip on Installation page in docs to point to all the info about Pygments and
322
+ the 'highlight' tag. (#1196)
323
+ * Run `site/img` through ImageOptim (thanks @qrush!) (#1208)
324
+ * Added Jade Converter to `site/docs/plugins` (#1210)
325
+ * Fix location of docs pages in Contributing pages (#1214)
326
+ * Add ReadInXMinutes plugin to the plugin list (#1222)
327
+ * Remove plugins from the plugin list that have equivalents in Jekyll
328
+ proper (#1223)
329
+ * Add jekyll-assets to the plugin list (#1225)
330
+ * Add jekyll-pandoc-mulitple-formats to the plugin list (#1229)
331
+ * Remove dead link to "Using Git to maintain your blog" (#1227)
332
+ * Tidy up the third-party plugins listing (#1228)
333
+ * Update contributor information (#1192)
334
+ * Update URL of article about Blogger migration (#1242)
335
+ * Specify that RedCarpet is the default for new Jekyll sites on Quickstart page (#1247)
336
+ * Added site.pages to Variables page in docs (#1251)
337
+ * Add Youku and Tudou Embed link on Plugins page. (#1250)
338
+ * Add note that `gist` tag supports private gists. (#1248)
339
+ * Add `jekyll-timeago` to list of third-party plugins. (#1260)
340
+ * Add `jekyll-swfobject` to list of third-party plugins. (#1263)
341
+ * Add `jekyll-picture-tag` to list of third-party plugins. (#1280)
342
+ * Update the GitHub Pages documentation regarding relative URLs
343
+ (#1291)
344
+ * Update the S3 deployment documentation (#1294)
345
+ * Add suggestion for Xcode CLT install to troubleshooting page in docs (#1296)
346
+ * Add 'Working with drafts' page to docs (#1289)
347
+ * Add information about time zones to the documentation for a page's
348
+ date (#1304)
349
+
350
+ ## 1.0.3 / 2013-06-07
351
+
352
+ ### Minor Enhancements
353
+ * Add support to gist tag for private gists. (#1189)
354
+ * Fail loudly when MaRuKu errors out (#1190)
355
+ * Move the building of related posts into their own class (#1057)
356
+ * Removed trailing spaces in several places throughout the code (#1116)
357
+ * Add a `--force` option to `jekyll new` (#1115)
358
+ * Convert IDs in the site template to classes (#1170)
359
+
360
+ ### Bug Fixes
361
+ * Fix typo in Stevenson constant "ERROR". (#1166)
362
+ * Rename Jekyll::Logger to Jekyll::Stevenson to fix inheritance issue (#1106)
363
+ * Exit with a non-zero exit code when dealing with a Liquid error (#1121)
364
+ * Make the `exclude` and `include` options backwards compatible with
365
+ versions of Jekyll prior to 1.0 (#1114)
366
+ * Fix pagination on Windows (#1063)
367
+ * Fix the application of Pygments' Generic Output style to Go code
368
+ (#1156)
369
+
370
+ ### Site Enhancements
371
+ * Add a Pro Tip to docs about front matter variables being optional (#1147)
372
+ * Add changelog to site as History page in /docs/ (#1065)
373
+ * Add note to Upgrading page about new config options in 1.0.x (#1146)
374
+ * Documentation for `date_to_rfc822` and `uri_escape` (#1142)
375
+ * Documentation highlight boxes shouldn't show scrollbars if not necessary (#1123)
376
+ * Add link to jekyll-minibundle in the doc's plugins list (#1035)
377
+ * Quick patch for importers documentation
378
+ * Fix prefix for WordpressDotCom importer in docs (#1107)
379
+ * Add jekyll-contentblocks plugin to docs (#1068)
380
+ * Make code bits in notes look more natural, more readable (#1089)
381
+ * Fix logic for `relative_permalinks` instructions on Upgrading page (#1101)
382
+ * Add docs for post excerpt (#1072)
383
+ * Add docs for gist tag (#1072)
384
+ * Add docs indicating that Pygments does not need to be installed
385
+ separately (#1099, #1119)
386
+ * Update the migrator docs to be current (#1136)
387
+ * Add the Jekyll Gallery Plugin to the plugin list (#1143)
388
+
389
+ ### Development Fixes
390
+ * Use Jekyll.logger instead of Jekyll::Stevenson to log things (#1149)
391
+ * Fix pesky Cucumber infinite loop (#1139)
392
+ * Do not write posts with timezones in Cucumber tests (#1124)
393
+ * Use ISO formatted dates in Cucumber features (#1150)
394
+
395
+ ## 1.0.2 / 2013-05-12
396
+
397
+ ### Major Enhancements
398
+ * Add `jekyll doctor` command to check site for any known compatibility problems (#1081)
399
+ * Backwards-compatibilize relative permalinks (#1081)
400
+
401
+ ### Minor Enhancements
402
+ * Add a `data-lang="<lang>"` attribute to Redcarpet code blocks (#1066)
403
+ * Deprecate old config `server_port`, match to `port` if `port` isn't set (#1084)
404
+ * Update pygments.rb version to 0.5.0 (#1061)
405
+ * Update Kramdown version to 1.0.2 (#1067)
406
+
407
+ ### Bug Fixes
408
+ * Fix issue when categories are numbers (#1078)
409
+ * Catching that Redcarpet gem isn't installed (#1059)
410
+
411
+ ### Site Enhancements
412
+ * Add documentation about `relative_permalinks` (#1081)
413
+ * Remove pygments-installation instructions, as pygments.rb is bundled with it (#1079)
414
+ * Move pages to be Pages for realz (#985)
415
+ * Updated links to Liquid documentation (#1073)
416
+
417
+ ## 1.0.1 / 2013-05-08
418
+
419
+ ### Minor Enhancements
420
+ * Do not force use of toc_token when using generate_tok in RDiscount (#1048)
421
+ * Add newer `language-` class name prefix to code blocks (#1037)
422
+ * Commander error message now preferred over process abort with incorrect args (#1040)
423
+
424
+ ### Bug Fixes
425
+ * Make Redcarpet respect the pygments configuration option (#1053)
426
+ * Fix the index build with LSI (#1045)
427
+ * Don't print deprecation warning when no arguments are specified. (#1041)
428
+ * Add missing `</div>` to site template used by `new` subcommand, fixed typos in code (#1032)
429
+
430
+ ### Site Enhancements
431
+ * Changed https to http in the GitHub Pages link (#1051)
432
+ * Remove CSS cruft, fix typos, fix HTML errors (#1028)
433
+ * Removing manual install of Pip and Distribute (#1025)
434
+ * Updated URL for Markdown references plugin (#1022)
435
+
436
+ ### Development Fixes
437
+ * Markdownify history file (#1027)
438
+ * Update links on README to point to new jekyllrb.com (#1018)
439
+
440
+ ## 1.0.0 / 2013-05-06
441
+
442
+ ### Major Enhancements
443
+ * Add `jekyll new` subcommand: generate a jekyll scaffold (#764)
444
+ * Refactored jekyll commands into subcommands: build, serve, and migrate. (#690)
445
+ * Removed importers/migrators from main project, migrated to jekyll-import sub-gem (#793)
446
+ * Added ability to render drafts in `_drafts` folder via command line (#833)
447
+ * Add ordinal date permalink style (/:categories/:year/:y_day/:title.html) (#928)
448
+
449
+ ### Minor Enhancements
450
+ * Site template HTML5-ified (#964)
451
+ * Use post's directory path when matching for the post_url tag (#998)
452
+ * Loosen dependency on Pygments so it's only required when it's needed (#1015)
453
+ * Parse strings into Time objects for date-related Liquid filters (#1014)
454
+ * Tell the user if there is no subcommand specified (#1008)
455
+ * Freak out if the destination of `jekyll new` exists and is non-empty (#981)
456
+ * Add `timezone` configuration option for compilation (#957)
457
+ * Add deprecation messages for pre-1.0 CLI options (#959)
458
+ * Refactor and colorize logging (#959)
459
+ * Refactor Markdown parsing (#955)
460
+ * Added application/vnd.apple.pkpass to mime.types served by WEBrick (#907)
461
+ * Move template site to default markdown renderer (#961)
462
+ * Expose new attribute to Liquid via `page`: `page.path` (#951)
463
+ * Accept multiple config files from command line (#945)
464
+ * Add page variable to liquid custom tags and blocks (#413)
465
+ * Add paginator.previous_page_path and paginator.next_page_path (#942)
466
+ * Backwards compatibility for 'auto' (#821, #934)
467
+ * Added date_to_rfc822 used on RSS feeds (#892)
468
+ * Upgrade version of pygments.rb to 0.4.2 (#927)
469
+ * Added short month (e.g. "Sep") to permalink style options for posts (#890)
470
+ * Expose site.baseurl to Liquid templates (#869)
471
+ * Adds excerpt attribute to posts which contains first paragraph of content (#837)
472
+ * Accept custom configuration file via CLI (#863)
473
+ * Load in GitHub Pages MIME Types on `jekyll serve` (#847, #871)
474
+ * Improve debugability of error message for a malformed highlight tag (#785)
475
+ * Allow symlinked files in unsafe mode (#824)
476
+ * Add 'gist' Liquid tag to core (#822, #861)
477
+ * New format of Jekyll output (#795)
478
+ * Reinstate `--limit_posts` and `--future` switches (#788)
479
+ * Remove ambiguity from command descriptions (#815)
480
+ * Fix SafeYAML Warnings (#807)
481
+ * Relaxed Kramdown version to 0.14 (#808)
482
+ * Aliased `jekyll server` to `jekyll serve`. (#792)
483
+ * Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. (#744)
484
+ * Refactored jekyll subcommands into Jekyll::Commands submodule, which now contains them (#768)
485
+ * Rescue from import errors in Wordpress.com migrator (#671)
486
+ * Massively accelerate LSI performance (#664)
487
+ * Truncate post slugs when importing from Tumblr (#496)
488
+ * Add glob support to include, exclude option (#743)
489
+ * Layout of Page or Post defaults to 'page' or 'post', respectively (#580)
490
+ REPEALED by (#977)
491
+ * "Keep files" feature (#685)
492
+ * Output full path & name for files that don't parse (#745)
493
+ * Add source and destination directory protection (#535)
494
+ * Better YAML error message (#718)
495
+ * Bug Fixes
496
+ * Paginate in subdirectories properly (#1016)
497
+ * Ensure post and page URLs have a leading slash (#992)
498
+ * Catch all exceptions, not just StandardError descendents (#1007)
499
+ * Bullet-proof limit_posts option (#1004)
500
+ * Read in YAML as UTF-8 to accept non-ASCII chars (#836)
501
+ * Fix the CLI option `--plugins` to actually accept dirs and files (#993)
502
+ * Allow 'excerpt' in YAML Front-Matter to override the extracted excerpt (#946)
503
+ * Fix cascade problem with site.baseurl, site.port and site.host. (#935)
504
+ * Filter out directories with valid post names (#875)
505
+ * Fix symlinked static files not being correctly built in unsafe mode (#909)
506
+ * Fix integration with directory_watcher 1.4.x (#916)
507
+ * Accepting strings as arguments to jekyll-import command (#910)
508
+ * Force usage of older directory_watcher gem as 1.5 is broken (#883)
509
+ * Ensure all Post categories are downcase (#842, #872)
510
+ * Force encoding of the rdiscount TOC to UTF8 to avoid conversion errors (#555)
511
+ * Patch for multibyte URI problem with jekyll serve (#723)
512
+ * Order plugin execution by priority (#864)
513
+ * Fixed Page#dir and Page#url for edge cases (#536)
514
+ * Fix broken post_url with posts with a time in their YAML Front-Matter (#831)
515
+ * Look for plugins under the source directory (#654)
516
+ * Tumblr Migrator: finds `_posts` dir correctly, fixes truncation of long
517
+ post names (#775)
518
+ * Force Categories to be Strings (#767)
519
+ * Safe YAML plugin to prevent vulnerability (#777)
520
+ * Add SVG support to Jekyll/WEBrick. (#407, #406)
521
+ * Prevent custom destination from causing continuous regen on watch (#528, #820, #862)
522
+
523
+ ### Site Enhancements
524
+ * Responsify (#860)
525
+ * Fix spelling, punctuation and phrasal errors (#989)
526
+ * Update quickstart instructions with `new` command (#966)
527
+ * Add docs for page.excerpt (#956)
528
+ * Add docs for page.path (#951)
529
+ * Clean up site docs to prepare for 1.0 release (#918)
530
+ * Bring site into master branch with better preview/deploy (#709)
531
+ * Redesigned site (#583)
532
+
533
+ ### Development Fixes
534
+ * Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 (#938)
535
+ * Added "features:html" rake task for debugging purposes, cleaned up
536
+ cucumber profiles (#832)
537
+ * Explicitly require HTTPS rubygems source in Gemfile (#826)
538
+ * Changed Ruby version for development to 1.9.3-p374 from p362 (#801)
539
+ * Including a link to the GitHub Ruby style guide in CONTRIBUTING.md (#806)
540
+ * Added script/bootstrap (#776)
541
+ * Running Simplecov under 2 conditions: ENV(COVERAGE)=true and with Ruby version
542
+ of greater than 1.9 (#771)
543
+ * Switch to Simplecov for coverage report (#765)
544
+
545
+ ## 0.12.1 / 2013-02-19
546
+ ### Minor Enhancements
547
+ * Update Kramdown version to 0.14.1 (#744)
548
+ * Test Enhancements
549
+ * Update Rake version to 10.0.3 (#744)
550
+ * Update Shoulda version to 3.3.2 (#744)
551
+ * Update Redcarpet version to 2.2.2 (#744)
552
+
553
+ ## 0.12.0 / 2012-12-22
554
+ ### Minor Enhancements
555
+ * Add ability to explicitly specify included files (#261)
556
+ * Add --default-mimetype option (#279)
557
+ * Allow setting of RedCloth options (#284)
558
+ * Add post_url Liquid tag for internal post linking (#369)
559
+ * Allow multiple plugin dirs to be specified (#438)
560
+ * Inline TOC token support for RDiscount (#333)
561
+ * Add the option to specify the paginated url format (#342)
562
+ * Swap out albino for pygments.rb (#569)
563
+ * Support Redcarpet 2 and fenced code blocks (#619)
564
+ * Better reporting of Liquid errors (#624)
565
+ * Bug Fixes
566
+ * Allow some special characters in highlight names
567
+ * URL escape category names in URL generation (#360)
568
+ * Fix error with limit_posts (#442)
569
+ * Properly select dotfile during directory scan (#363, #431, #377)
570
+ * Allow setting of Kramdown smart_quotes (#482)
571
+ * Ensure front-matter is at start of file (#562)
572
+
573
+ ## 0.11.2 / 2011-12-27
574
+ * Bug Fixes
575
+ * Fix gemspec
576
+
577
+ ## 0.11.1 / 2011-12-27
578
+ * Bug Fixes
579
+ * Fix extra blank line in highlight blocks (#409)
580
+ * Update dependencies
581
+
582
+ ## 0.11.0 / 2011-07-10
583
+ ### Major Enhancements
584
+ * Add command line importer functionality (#253)
585
+ * Add Redcarpet Markdown support (#318)
586
+ * Make markdown/textile extensions configurable (#312)
587
+ * Add `markdownify` filter
588
+
589
+ ### Minor Enhancements
590
+ * Switch to Albino gem
591
+ * Bundler support
592
+ * Use English library to avoid hoops (#292)
593
+ * Add Posterous importer (#254)
594
+ * Fixes for Wordpress importer (#274, #252, #271)
595
+ * Better error message for invalid post date (#291)
596
+ * Print formatted fatal exceptions to stdout on build failure
597
+ * Add Tumblr importer (#323)
598
+ * Add Enki importer (#320)
599
+ * Bug Fixes
600
+ * Secure additional path exploits
601
+
602
+ ## 0.10.0 / 2010-12-16
603
+ * Bug Fixes
604
+ * Add --no-server option.
605
+
606
+ ## 0.9.0 / 2010-12-15
607
+ ### Minor Enhancements
608
+ * Use OptionParser's `[no-]` functionality for better boolean parsing.
609
+ * Add Drupal migrator (#245)
610
+ * Complain about YAML and Liquid errors (#249)
611
+ * Remove orphaned files during regeneration (#247)
612
+ * Add Marley migrator (#28)
613
+
614
+ ## 0.8.0 / 2010-11-22
615
+ ### Minor Enhancements
616
+ * Add wordpress.com importer (#207)
617
+ * Add --limit-posts cli option (#212)
618
+ * Add uri_escape filter (#234)
619
+ * Add --base-url cli option (#235)
620
+ * Improve MT migrator (#238)
621
+ * Add kramdown support (#239)
622
+ * Bug Fixes
623
+ * Fixed filename basename generation (#208)
624
+ * Set mode to UTF8 on Sequel connections (#237)
625
+ * Prevent `_includes` dir from being a symlink
626
+
627
+ ## 0.7.0 / 2010-08-24
628
+ ### Minor Enhancements
629
+ * Add support for rdiscount extensions (#173)
630
+ * Bug Fixes
631
+ * Highlight should not be able to render local files
632
+ * The site configuration may not always provide a 'time' setting (#184)
633
+
634
+ ## 0.6.2 / 2010-06-25
635
+ * Bug Fixes
636
+ * Fix Rakefile 'release' task (tag pushing was missing origin)
637
+ * Ensure that RedCloth is loaded when textilize filter is used (#183)
638
+ * Expand source, destination, and plugin paths (#180)
639
+ * Fix page.url to include full relative path (#181)
640
+
641
+ ## 0.6.1 / 2010-06-24
642
+ * Bug Fixes
643
+ * Fix Markdown Pygments prefix and suffix (#178)
644
+
645
+ ## 0.6.0 / 2010-06-23
646
+ ### Major Enhancements
647
+ * Proper plugin system (#19, #100)
648
+ * Add safe mode so unsafe converters/generators can be added
649
+ * Maruku is now the only processor dependency installed by default.
650
+ Other processors will be lazy-loaded when necessary (and prompt the
651
+ user to install them when necessary) (#57)
652
+
653
+ ### Minor Enhancements
654
+ * Inclusion/exclusion of future dated posts (#59)
655
+ * Generation for a specific time (#59)
656
+ * Allocate site.time on render not per site_payload invocation (#59)
657
+ * Pages now present in the site payload and can be used through the
658
+ site.pages and site.html_pages variables
659
+ * Generate phase added to site#process and pagination is now a generator
660
+ * Switch to RakeGem for build/test process
661
+ * Only regenerate static files when they have changed (#142)
662
+ * Allow arbitrary options to Pygments (#31)
663
+ * Allow URL to be set via command line option (#147)
664
+ * Bug Fixes
665
+ * Render highlighted code for non markdown/textile pages (#116)
666
+ * Fix highlighting on Ruby 1.9 (#65)
667
+ * Fix extension munging when pretty permalinks are enabled (#64)
668
+ * Stop sorting categories (#33)
669
+ * Preserve generated attributes over front matter (#119)
670
+ * Fix source directory binding using Dir.pwd (#75)
671
+
672
+ ## 0.5.7 / 2010-01-12
673
+ ### Minor Enhancements
674
+ * Allow overriding of post date in the front matter (#62, #38)
675
+ * Bug Fixes
676
+ * Categories isn't always an array (#73)
677
+ * Empty tags causes error in read_posts (#84)
678
+ * Fix pagination to adhere to read/render/write paradigm
679
+ * Test Enhancement
680
+ * cucumber features no longer use site.posts.first where a better
681
+ alternative is available
682
+
683
+ ## 0.5.6 / 2010-01-08
684
+ * Bug Fixes
685
+ * Require redcloth >= 4.2.1 in tests (#92)
686
+ * Don't break on triple dashes in yaml frontmatter (#93)
687
+
688
+ ### Minor Enhancements
689
+ * Allow .mkd as markdown extension
690
+ * Use $stdout/err instead of constants (#99)
691
+ * Properly wrap code blocks (#91)
692
+ * Add javascript mime type for webrick (#98)
693
+
694
+ ## 0.5.5 / 2010-01-08
695
+ * Bug Fixes
696
+ * Fix pagination % 0 bug (#78)
697
+ * Ensure all posts are processed first (#71)
698
+
699
+ ## NOTE
700
+ * After this point I will no longer be giving credit in the history;
701
+ that is what the commit log is for.
702
+
703
+ ## 0.5.4 / 2009-08-23
704
+ * Bug Fixes
705
+ * Do not allow symlinks (security vulnerability)
706
+
707
+ ## 0.5.3 / 2009-07-14
708
+ * Bug Fixes
709
+ * Solving the permalink bug where non-html files wouldn't work
710
+ (@jeffrydegrande)
711
+
712
+ ## 0.5.2 / 2009-06-24
713
+ * Enhancements
714
+ * Added --paginate option to the executable along with a paginator object
715
+ for the payload (@calavera)
716
+ * Upgraded RedCloth to 4.2.1, which makes `<notextile>` tags work once
717
+ again.
718
+ * Configuration options set in config.yml are now available through the
719
+ site payload (@vilcans)
720
+ * Posts can now have an empty YAML front matter or none at all
721
+ (@bahuvrihi)
722
+ * Bug Fixes
723
+ * Fixing Ruby 1.9 issue that requires to_s on the err object
724
+ (@Chrononaut)
725
+ * Fixes for pagination and ordering posts on the same day (@ujh)
726
+ * Made pages respect permalinks style and permalinks in yml front matter
727
+ (@eugenebolshakov)
728
+ * Index.html file should always have index.html permalink
729
+ (@eugenebolshakov)
730
+ * Added trailing slash to pretty permalink style so Apache is happy
731
+ (@eugenebolshakov)
732
+ * Bad markdown processor in config fails sooner and with better message
733
+ (@gcnovus)
734
+ * Allow CRLFs in yaml frontmatter (@juretta)
735
+ * Added Date#xmlschema for Ruby versions < 1.9
736
+
737
+ ## 0.5.1 / 2009-05-06
738
+ ### Major Enhancements
739
+ * Next/previous posts in site payload (@pantulis, @tomo)
740
+ * Permalink templating system
741
+ * Moved most of the README out to the GitHub wiki
742
+ * Exclude option in configuration so specified files won't be brought over
743
+ with generated site (@duritong)
744
+ * Bug Fixes
745
+ * Making sure config.yaml references are all gone, using only config.yml
746
+ * Fixed syntax highlighting breaking for UTF-8 code (@henrik)
747
+ * Worked around RDiscount bug that prevents Markdown from getting parsed
748
+ after highlight (@henrik)
749
+ * CGI escaped post titles (@Chrononaut)
750
+
751
+ ## 0.5.0 / 2009-04-07
752
+ ### Minor Enhancements
753
+ * Ability to set post categories via YAML (@qrush)
754
+ * Ability to set prevent a post from publishing via YAML (@qrush)
755
+ * Add textilize filter (@willcodeforfoo)
756
+ * Add 'pretty' permalink style for wordpress-like urls (@dysinger)
757
+ * Made it possible to enter categories from YAML as an array (@Chrononaut)
758
+ * Ignore Emacs autosave files (@Chrononaut)
759
+ * Bug Fixes
760
+ * Use block syntax of popen4 to ensure that subprocesses are properly disposed (@jqr)
761
+ * Close open4 streams to prevent zombies (@rtomayko)
762
+ * Only query required fields from the WP Database (@ariejan)
763
+ * Prevent `_posts` from being copied to the destination directory (@bdimcheff)
764
+ * Refactors
765
+ * Factored the filtering code into a method (@Chrononaut)
766
+ * Fix tests and convert to Shoulda (@qrush, @technicalpickles)
767
+ * Add Cucumber acceptance test suite (@qrush, @technicalpickles)
768
+
769
+ ## 0.4.1
770
+ ### Minor Enhancements
771
+ * Changed date format on wordpress converter (zeropadding) (@dysinger)
772
+ * Bug Fixes
773
+ * Add jekyll binary as executable to gemspec (@dysinger)
774
+
775
+ ## 0.4.0 / 2009-02-03
776
+ ### Major Enhancements
777
+ * Switch to Jeweler for packaging tasks
778
+
779
+ ### Minor Enhancements
780
+ * Type importer (@codeslinger)
781
+ * site.topics accessor (@baz)
782
+ * Add `array_to_sentence_string` filter (@mchung)
783
+ * Add a converter for textpattern (@PerfectlyNormal)
784
+ * Add a working Mephisto / MySQL converter (@ivey)
785
+ * Allowing .htaccess files to be copied over into the generated site (@briandoll)
786
+ * Add option to not put file date in permalink URL (@mreid)
787
+ * Add line number capabilities to highlight blocks (@jcon)
788
+ * Bug Fixes
789
+ * Fix permalink behavior (@cavalle)
790
+ * Fixed an issue with pygments, markdown, and newlines (@zpinter)
791
+ * Ampersands need to be escaped (@pufuwozu, @ap)
792
+ * Test and fix the site.categories hash (@zzot)
793
+ * Fix site payload available to files (@matrix9180)
794
+
795
+ ## 0.3.0 / 2008-12-24
796
+ ### Major Enhancements
797
+ * Added --server option to start a simple WEBrick server on destination
798
+ directory (@johnreilly and @mchung)
799
+
800
+ ### Minor Enhancements
801
+ * Added post categories based on directories containing `_posts` (@mreid)
802
+ * Added post topics based on directories underneath `_posts`
803
+ * Added new date filter that shows the full month name (@mreid)
804
+ * Merge Post's YAML front matter into its to_liquid payload (@remi)
805
+ * Restrict includes to regular files underneath `_includes`
806
+ * Bug Fixes
807
+ * Change YAML delimiter matcher so as to not chew up 2nd level markdown
808
+ headers (@mreid)
809
+ * Fix bug that meant page data (such as the date) was not available in
810
+ templates (@mreid)
811
+ * Properly reject directories in `_layouts`
812
+
813
+ ## 0.2.1 / 2008-12-15
814
+ * Major Changes
815
+ * Use Maruku (pure Ruby) for Markdown by default (@mreid)
816
+ * Allow use of RDiscount with --rdiscount flag
817
+
818
+ ### Minor Enhancements
819
+ * Don't load directory_watcher unless it's needed (@pjhyett)
820
+
821
+ ## 0.2.0 / 2008-12-14
822
+ * Major Changes
823
+ * related_posts is now found in site.related_posts
824
+
825
+ ## 0.1.6 / 2008-12-13
826
+ * Major Features
827
+ * Include files in `_includes` with `{% include x.textile %}`
828
+
829
+ ## 0.1.5 / 2008-12-12
830
+ ### Major Enhancements
831
+ * Code highlighting with Pygments if --pygments is specified
832
+ * Disable true LSI by default, enable with --lsi
833
+
834
+ ### Minor Enhancements
835
+ * Output informative message if RDiscount is not available (@JackDanger)
836
+ * Bug Fixes
837
+ * Prevent Jekyll from picking up the output directory as a source (@JackDanger)
838
+ * Skip `related_posts` when there is only one post (@JackDanger)
839
+
840
+ ## 0.1.4 / 2008-12-08
841
+ * Bug Fixes
842
+ * DATA does not work properly with rubygems
843
+
844
+ ## 0.1.3 / 2008-12-06
845
+ * Major Features
846
+ * Markdown support (@vanpelt)
847
+ * Mephisto and CSV converters (@vanpelt)
848
+ * Code hilighting (@vanpelt)
849
+ * Autobuild
850
+ * Bug Fixes
851
+ * Accept both \r\n and \n in YAML header (@vanpelt)
852
+
853
+ ## 0.1.2 / 2008-11-22
854
+ * Major Features
855
+ * Add a real "related posts" implementation using Classifier
856
+ * Command Line Changes
857
+ * Allow cli to be called with 0, 1, or 2 args intuiting dir paths
858
+ if they are omitted
859
+
860
+ ## 0.1.1 / 2008-11-22
861
+ * Minor Additions
862
+ * Posts now support introspectional data e.g. `{{ page.url }}`
863
+
864
+ ## 0.1.0 / 2008-11-05
865
+ * First release
866
+ * Converts posts written in Textile
867
+ * Converts regular site pages
868
+ * Simple copy of binary files
869
+
870
+ ## 0.0.0 / 2008-10-19
871
+ * Birthday!