diff --git a/bin/jekyll b/bin/jekyll index 35e35d01..d20c6018 100755 --- a/bin/jekyll +++ b/bin/jekyll @@ -21,6 +21,8 @@ command :build do |c| c.syntax = 'jekyll build [options]' c.description = 'Build your site' + c.option '--future', 'Publishes posts with a future date' + c.option '--limit_posts MAX_POSTS', 'Limits the number of posts to parse and publish' c.option '-w', '--watch', 'Watch for changes and rebuild' c.option '--lsi', 'Use LSI for improved related posts' @@ -35,6 +37,8 @@ command :serve do |c| c.syntax = 'jekyll serve [options]' c.description = 'Serve your site locally' + c.option '--future', 'Publishes posts with a future date' + c.option '--limit_posts MAX_POSTS', 'Limits the number of posts to parse and publish' c.option '-w', '--watch', 'Watch for changes and rebuild' c.option '--lsi', 'Use LSI for improved related posts'