Class: Middleman::Cli::Deploy

Inherits:
Thor
  • Object
show all
Includes:
Thor::Actions
Defined in:
lib/middleman-deploy/commands.rb

Overview

This class provides a “deploy” command for the middleman CLI.

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.exit_on_failure?Boolean

Tell Thor to exit with a nonzero exit code on failure

Returns:

  • (Boolean)


20
21
22
# File 'lib/middleman-deploy/commands.rb', line 20

def self.exit_on_failure?
  true
end

Instance Method Details

#deployObject



29
30
31
32
# File 'lib/middleman-deploy/commands.rb', line 29

def deploy
  build_before(options)
  process
end