Class: BuildTool::Commands::Rebase

Inherits:
ModuleBasedCommand show all
Includes:
MJ::Tools::SubProcess
Defined in:
lib/build-tool/commands/rebase.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)


23
24
25
# File 'lib/build-tool/commands/rebase.rb', line 23

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

#do_execute_module(mod) ⇒ Object



44
45
46
47
48
49
50
# File 'lib/build-tool/commands/rebase.rb', line 44

def do_execute_module( mod )
    if mod.checkedout?
        rebase( mod )
    else
        logger.info "Not checked out. Skipping"
    end
end

#initialize_optionsObject



27
28
29
30
# File 'lib/build-tool/commands/rebase.rb', line 27

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

#is_module_ready?(mod) ⇒ Boolean

Returns:

  • (Boolean)


32
33
34
35
36
37
38
39
40
41
# File 'lib/build-tool/commands/rebase.rb', line 32

def is_module_ready?( mod )
    isready = true
    if !mod.checkedout?
        logger.warn "#{mod.name}: module not checked out -> skipping."
    end
    if !mod.vcs.fetching_supported?
        logger.warn "#{mod.name}: fetching not support by #{mod.vcs.name} -> will have no effect."
    end
    return isready
end

#log?Boolean

Log this command if $noop is not active

Returns:

  • (Boolean)


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

def log?
    ! $noop
end