Sha256: ca3721a8f27d649b52a09cc1b94b54069d11d740735620f90577a93736979bc6

Contents?: true

Size: 510 Bytes

Versions: 1

Compression:

Stored size: 510 Bytes

Contents

#!/usr/bin/env ruby
require 'rubygems'
require 'dextery'
require 'commander/import'

program :name, 'dextery'
program :version, '0.0.4a'
program :description, 'Blog engine based on Jekyll Bootstrap'

default_command :help

command :new do |c|
  c.syntax = 'dextery new [DIR]'
  c.description = 'Creates a new Dextery site under the project name'

  c.option '--force', 'Force creation even if PATH already exists'

  c.action do |args, options|
    Dextery::Generator.manifest(args, options.__hash__)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dextery-0.0.4a bin/dextery