Sha256: d1c04575e60277b9fff55a605e22d7cdfdbae45c99d7c526c52fcd361f5b1d15

Contents?: true

Size: 494 Bytes

Versions: 16

Compression:

Stored size: 494 Bytes

Contents

module Ufo
  class Tasks < Command
    desc "build", "Build task definitions."
    long_desc Help.text("tasks:build")
    option :pretty, type: :boolean, default: true, desc: "Pretty format the json for the task definitions"
    def build
      Tasks::Builder.new(options).build
    end

    desc "register", "Register all built task definitions in `ufo/output` folder."
    long_desc Help.text("tasks:register")
    def register
      Tasks::Register.register(:all, options)
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
ufo-4.6.3 lib/ufo/tasks.rb
ufo-4.6.2 lib/ufo/tasks.rb
ufo-4.6.1 lib/ufo/tasks.rb
ufo-4.6.0 lib/ufo/tasks.rb
ufo-4.5.11 lib/ufo/tasks.rb
ufo-4.5.10 lib/ufo/tasks.rb
ufo-4.5.9 lib/ufo/tasks.rb
ufo-4.5.8 lib/ufo/tasks.rb
ufo-4.5.7 lib/ufo/tasks.rb
ufo-4.5.6 lib/ufo/tasks.rb
ufo-4.5.5 lib/ufo/tasks.rb
ufo-4.5.4 lib/ufo/tasks.rb
ufo-4.5.3 lib/ufo/tasks.rb
ufo-4.5.2 lib/ufo/tasks.rb
ufo-4.5.1 lib/ufo/tasks.rb
ufo-4.5.0 lib/ufo/tasks.rb