Sha256: 8abe1b28808c4afa424fb5e653085c574dd0db51cd94dcd7d49dec4da33c2ce1

Contents?: true

Size: 491 Bytes

Versions: 1

Compression:

Stored size: 491 Bytes

Contents

class Lono::CLI::New
  class Helper < Lono::Command
    Help = Lono::CLI::Help

    long_desc Help.text("new/helper/blueprint")
    Blueprint.cli_options.each { |args| option(*args) }
    register(Blueprint, "blueprint", "blueprint HELPER_NAME --blueprint", "Generates new blueprint helper")

    long_desc Help.text("new/helper/project")
    Project.cli_options.each { |args| option(*args) }
    register(Project, "project", "project HELPER_NAME", "Generates new project helper")
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lono-8.0.0.pre.rc3 lib/lono/cli/new/helper.rb