Add 'jekyll help' command.

Ref: #2695
This commit is contained in:
Parker Moore 2014-08-06 21:17:38 -04:00
parent 565bbada08
commit a0f449d613
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
module Jekyll
module Commands
class Help < Command
class << self
def init_with_program(prog)
prog.command(:help) do |c|
c.syntax 'help <command>'
c.description 'Show the help for'
c.action do |args, _|
if args.empty?
puts prog
else
puts prog.commands[args.first.to_sym]
end
end
end
end
def usage_message(prog, cmd)
Jekyll.logger.error "Error:", "No command specified."
Jekyll.logger.warn "Usage:", cmd.syntax
Jekyll.logger.info "Valid commands:", prog.commands.keys.join(", ")
end
end
end
end
end