class Autoproj::RepositoryManagers::Manager
Base class for all repository managers. Subclasses must add the install(entries)
method
Repository managers must be registered in OS_REPOSITORY_MANAGERS
Attributes
ws[R]
@return [Workspace] the workspace
Public Class Methods
new(ws)
click to toggle source
Create a repository manager
@param [Workspace] ws the underlying workspace
# File lib/autoproj/repository_managers/manager.rb, line 14 def initialize(ws) @ws = ws end
Public Instance Methods
install(definitions)
click to toggle source
# File lib/autoproj/repository_managers/manager.rb, line 18 def install(definitions) end
os_dependencies()
click to toggle source
# File lib/autoproj/repository_managers/manager.rb, line 21 def os_dependencies [] end