Files

Class/Module Index [+]

Quicksearch

Jekyll::Commands::Docs

Public Class Methods

init_with_program(prog) click to toggle source
# File lib/jekyll/commands/docs.rb, line 7
def init_with_program(prog)
  prog.command(:docs) do |c|
    c.syntax 'docs'
    c.description "Launch local server with docs for Jekyll v#{Jekyll::VERSION}"

    c.option 'port', '-P', '--port [PORT]', 'Port to listen on'
    c.option 'host', '-H', '--host [HOST]', 'Host to bind to'

    c.action do |args, options|
      options.merge!({
        'source'      => File.expand_path("../../../site", File.dirname(__FILE__)),
        'destination' => File.expand_path("../../../site/_site", File.dirname(__FILE__))
      })
      Jekyll::Commands::Build.process(options)
      Jekyll::Commands::Serve.process(options)
    end
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.