Class: Aspen::CLI::Commands::Build

Inherits:
Dry::CLI::Command
  • Object
show all
Includes:
BuildSteps
Defined in:
lib/aspen/cli/commands/build.rb

Instance Method Summary collapse

Instance Method Details

#call(**options) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/aspen/cli/commands/build.rb', line 15

def call(**options)
  CheckAspenProject.new.call
  DownloadAttachedResources.new.call
  ConvertIntoAspen.new.call
  main_aspen_file = CollectMainAspen.new.call
  CompileMainAspen.new.call(main_aspen_file, options)
end