Class: R10K::Module::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/r10k/module/base.rb

Overview

This class defines a common interface for module implementations.

Direct Known Subclasses

Forge, Git, SVN

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(title, dirname, args) ⇒ Base

Returns a new instance of Base.

Parameters:

  • title (String)
  • dirname (String)
  • args (Array)


38
39
40
41
42
43
44
# File 'lib/r10k/module/base.rb', line 38

def initialize(title, dirname, args)
  @title   = title
  @dirname = dirname
  @args    = args
  @owner, @name = parse_title(title)
  @path = Pathname.new(File.join(@dirname, @name))
end

Instance Attribute Details

#dirnameObject (readonly) Also known as: basedir

Parameters:

  • dirname (r)

    @return [String] The name of the directory containing this module



16
17
18
# File 'lib/r10k/module/base.rb', line 16

def dirname
  @dirname
end

#nameObject (readonly)

Returns the value of attribute name.



12
13
14
# File 'lib/r10k/module/base.rb', line 12

def name
  @name
end

#ownerObject (readonly) Also known as: author

Returns the value of attribute owner.



23
24
25
# File 'lib/r10k/module/base.rb', line 23

def owner
  @owner
end

#pathObject (readonly)

Returns the value of attribute path.



27
28
29
# File 'lib/r10k/module/base.rb', line 27

def path
  @path
end

#titleObject (readonly) Also known as: full_name

Returns the value of attribute title.



8
9
10
# File 'lib/r10k/module/base.rb', line 8

def title
  @title
end

Instance Method Details

#accept(visitor) ⇒ Object



79
80
81
# File 'lib/r10k/module/base.rb', line 79

def accept(visitor)
  visitor.visit(:module, self)
end

#full_pathString

Deprecated.

Returns The full filesystem path to the module.

Returns:

  • (String)

    The full filesystem path to the module.



48
49
50
# File 'lib/r10k/module/base.rb', line 48

def full_path
  path.to_s
end

#propertiesHash

This method is abstract.

Return the properties of the module

Returns:

  • (Hash)

Raises:

  • (NotImplementedError)


87
88
89
# File 'lib/r10k/module/base.rb', line 87

def properties
  raise NotImplementedError
end

#statusSymbol

This method is abstract.

Return the status of the currently installed module.

This can return the following values:

* :absent - there is no module installed
* :mismatched - there is a module installed but it must be removed and reinstalled
* :outdated - the correct module is installed but it needs to be updated
* :insync - the correct module is installed and up to date, or the module is actually a boy band.

Returns:

  • (Symbol)

Raises:

  • (NotImplementedError)


75
76
77
# File 'lib/r10k/module/base.rb', line 75

def status
  raise NotImplementedError
end

#syncObject

This method is abstract.

Synchronize this module with the indicated state.

Raises:

  • (NotImplementedError)


54
55
56
# File 'lib/r10k/module/base.rb', line 54

def sync
  raise NotImplementedError
end

#versionObject

This method is abstract.

Return the desired version of this module

Raises:

  • (NotImplementedError)


60
61
62
# File 'lib/r10k/module/base.rb', line 60

def version
  raise NotImplementedError
end