Class: BuildTool::Commands::Install

Inherits:
ModuleBasedCommand show all
Includes:
MJ::Tools::SubProcess
Defined in:
lib/build-tool/commands/install.rb

Overview

BuildCommand

Instance Attribute Summary

Attributes inherited from Base

#cmd, #options, #parent

Instance Method Summary collapse

Methods inherited from ModuleBasedCommand

#clean, #clone, #configure, #do_execute, #fetch, #initialize, #install, #make, #rebase, #reconfigure, #summarize

Methods inherited from Standard

#complete_modules, #initialize, #log_directory, #while_logging_to

Methods inherited from Base

#<=>, #cleanup_after_vcs_access, #complete, #complete_arguments, #complete_readline_1_8, #complete_readline_1_9, #configuration, #do_complete_1_8, #do_complete_1_9, #do_execute, #each_option, #execute, #fullname, #initialize, #say, #setup_command, #show_help, #skip_command, #summarize, #teardown_command, #usage

Methods included from HelpText

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

Constructor Details

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

Instance Method Details

#applicable?Boolean

Returns:

  • (Boolean)


35
36
37
# File 'lib/build-tool/commands/install.rb', line 35

def applicable?
    BuildTool::Application.instance.has_recipe?
end

#do_execute_module(mod) ⇒ Object



48
49
50
51
52
53
54
# File 'lib/build-tool/commands/install.rb', line 48

def do_execute_module( mod )
    if mod.checkedout?
        install( mod, @fast )
    else
        logger.info "Not checked out. Skipping"
    end
end

#initialize_optionsObject



23
24
25
26
27
28
29
30
31
32
33
# File 'lib/build-tool/commands/install.rb', line 23

def initialize_options
    @options.banner = "Usage: #{Pathname.new($0).basename} #{self.fullname} MODULES..."

    @options.separator "Options:"
    @fast        = false
    options.on( "--fast", "Fast install. No compile (if supported)" ) { |t|
        @fast = t
        }

    super
end

#is_module_ready?(mod) ⇒ Boolean

Returns:

  • (Boolean)


39
40
41
42
43
44
45
# File 'lib/build-tool/commands/install.rb', line 39

def is_module_ready?( mod )
    isready = true
    if !mod.checkedout?
        logger.warn "#{mod.name}: module not checked out -> skipping."
    end
    return isready
end

#log?Boolean

Log this command if $noop is not active

Returns:

  • (Boolean)


19
20
21
# File 'lib/build-tool/commands/install.rb', line 19

def log?
    ! $noop
end