Sha256: 319521b10b6973879a3f35314006052c0e20afd6422ba307fe0310827fb42d06
Contents?: true
Size: 529 Bytes
Versions: 8
Compression:
Stored size: 529 Bytes
Contents
module Octopress class Build < Command def self.init_with_program(p) p.command(:build) do |c| c.syntax 'build [options]' c.description 'Build your site' CommandHelpers.add_build_options(c) c.action do |args, options| Octopress.config(options) options = CommandHelpers.normalize_options(options) options = ::Jekyll.configuration(options.to_symbol_keys) ::Jekyll::Commands::Build.process(options) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems