monad 0.0.2 → 0.0.3

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