Module: Jepeto

Defined in:
lib/jepeto.rb,
lib/jepeto/version.rb,
lib/jepeto/jekyll_post.rb,
lib/jepeto/option_parser.rb,
lib/jepeto/helpers/jekyll_post_helper.rb

Defined Under Namespace

Modules: JekyllPostHelper Classes: JekyllPost, OptionsParser

Constant Summary collapse

DEFAULT_OPTIONS =
{
  layout: "post",
  extension: "markdown",
  published: true
}
VERSION =
"0.12"
HARDCODED_DEFAULT_OPTIONS =

Don’t edit this constant hash! This can be overridden by the DEFAULT_OPTIONS hash or by options passed in by the user.

{
  date:      Date.today.to_s,
  extension: 'markdown',
  published: false,
  layout:    'default'
}
VALID_FILE_EXTENSIONS =

This array should contain all the file extensions supported by jekyll

[
  'markdown', 'mdown', 'md',
  'textile'
]
POST_DIRECTORY =
"_posts"