Sha256: d996e734ab0929705e7f5fd8bb843e73f357bc7e68e51fd3b9a2bc80ac528d3a

Contents?: true

Size: 580 Bytes

Versions: 5

Compression:

Stored size: 580 Bytes

Contents

require 'build-tool/commands'

module BuildTool; module Commands; module Modules

    class CLI < Commands::SubCommands

        name        "modules"
        description "Module 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::Modules

Version data entries

5 entries across 5 versions & 1 rubygems

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