Class: BuildTool::Commands::Environments::Set

Inherits:
Standard
  • Object
show all
Defined in:
lib/build-tool/commands/environments/set.rb

Overview

BuildCommand

Instance Attribute Summary

Attributes inherited from Base

#cmd, #options, #parent

Instance Method Summary collapse

Methods inherited from Standard

#complete_module, #complete_modules, #initialize, #log_directory, #while_logging_to

Methods inherited from Base

#<=>, #applicable?, #cleanup_after_vcs_access, #complete_arguments, #complete_readline, #configuration, #debug, #debug2, #do_complete, #each_option, #error, #execute, #fullname, #info, #initialize, #log?, #setup_command, #setup_options, #show_help, #skip_command, #summarize, #teardown_command, #trace, #usage, #verbose, #warn

Methods included from HelpText

#cmdalias, #description, included, #long_description, #name

Constructor Details

This class inherits a constructor from BuildTool::Commands::Standard

Instance Method Details

#do_execute(args) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/build-tool/commands/environments/set.rb', line 16

def do_execute( args )
    case args.length
    when 0
        return usage( "Not enough arguments." )
    when 1
        # OK
    else
        return usage( "To many arguments." )
    end

    # Get the environment.
    env = configuration.environment(args[0])
    return env.shell
end

#initialize_optionsObject



31
32
33
34
35
36
# File 'lib/build-tool/commands/environments/set.rb', line 31

def initialize_options
    options.banner = "Usage: #{self.fullname} [OPTIONS]... MODULE"
    options.separator( "" )
    options.separator( "Options" )
    super
end