Sha256: b828377e64606901d4cb4d7f221270a9d5fdcf79db6cd5abdba1f068a3625e7c

Contents?: true

Size: 600 Bytes

Versions: 5

Compression:

Stored size: 600 Bytes

Contents

require 'build-tool/commands'

module BuildTool; module Commands; module Environments

    class CLI < Commands::SubCommands

        name        "environments"
        description "Environment 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::Environments

Version data entries

5 entries across 5 versions & 1 rubygems

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