Sha256: dcd760ab7c968cd8a166b314ca0b5ddcc19cd75789b4dd2bf5d3d558d83d9343

Contents?: true

Size: 616 Bytes

Versions: 5

Compression:

Stored size: 616 Bytes

Contents

require 'build-tool/commands'

module BuildTool; module Commands; module Recipes

    #
    # BuildCommand
    #
    class CLI < Commands::SubCommands

        name        "recipes"
        description "build recipe related commands"

        def initialize_options
            super
        end

        def applicable?
            BuildTool::Application.instance.name == "build-tool"
        end

        def do_execute
            raise NotImplementedError
        end

    end # class CLI

    def self.create( *args )
        cmd = CLI.new( *args )
    end

end; end; end # module BuildTool::Commands::Recipes

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
build-tool-0.1.4 lib/build-tool/commands/recipes.rb
build-tool-0.1.3 lib/build-tool/commands/recipes.rb
build-tool-0.1.2 lib/build-tool/commands/recipes.rb
build-tool-0.1.0 lib/build-tool/commands/recipes.rb
build-tool-0.1.1 lib/build-tool/commands/recipes.rb