Method: Ufo::Tasks::Builder#build
- Defined in:
- lib/ufo/tasks/builder.rb
#build ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/ufo/tasks/builder.rb', line 16 def build puts "Building Task Definitions...".green unless @options[:mute] check_templates_definitions_path dsl = DSL.new(template_definitions_path, @options.merge(quiet: false, mute: true)) dsl.run puts "Task Definitions built in .ufo/output" unless @options[:mute] end |