Class: Jekyll::Commands::Draft

Inherits:
Command
  • Object
show all
Defined in:
lib/jekyll/commands/draft.rb

Defined Under Namespace

Classes: DraftFileInfo

Class Method Summary collapse

Class Method Details

.init_with_program(prog) ⇒ Object



6
7
8
9
10
11
12
13
14
15
# File 'lib/jekyll/commands/draft.rb', line 6

def self.init_with_program(prog)
  prog.command(:draft) do |c|
    c.syntax "draft NAME"
    c.description "Creates a new draft post with the given NAME"

    options.each { |opt| c.option *opt }

    c.action { |args, options| process args, options }
  end
end

.optionsObject



17
18
19
20
21
22
23
24
25
# File 'lib/jekyll/commands/draft.rb', line 17

def self.options
  [
    ["extension", "-x EXTENSION", "--extension EXTENSION", "Specify the file extension"],
    ["layout", "-l LAYOUT", "--layout LAYOUT", "Specify the draft layout"],
    ["force", "-f", "--force", "Overwrite a draft if it already exists"],
    ["config", "--config CONFIG_FILE[,CONFIG_FILE2,...]", Array, "Custom configuration file"],
    ["source", "-s", "--source SOURCE", "Custom source directory"],
  ]
end

.process(args = [], options = {}) ⇒ Object



27
28
29
30
31
32
33
34
# File 'lib/jekyll/commands/draft.rb', line 27

def self.process(args = [], options = {})
  params = Compose::ArgParser.new args, options
  params.validate!

  draft = DraftFileInfo.new params

  Compose::FileCreator.new(draft, params.force?, params.source).create!
end