Class: Blogdown::Cli::CommandLine

Inherits:
Thor
  • Object
show all
Defined in:
lib/blogdown/cli.rb

Instance Method Summary collapse

Instance Method Details

#buildObject



9
10
11
12
13
14
15
16
# File 'lib/blogdown/cli.rb', line 9

def build
  begin
    publisher=Blogdown::Publisher.new(Dir.pwd)
    publisher.compose
  rescue Exception=>e
    puts e.message
  end
end