Sha256: 1cf5cee6eb6c86cb81fb7188e20eff01318c49555022adfc9f10975ff60e5b7b
Contents?: true
Size: 674 Bytes
Versions: 15
Compression:
Stored size: 674 Bytes
Contents
module Autoproj module RepositoryManagers # Base class for all repository managers. Subclasses must add the # #install(entries) method # # Repository managers must be registered in OS_REPOSITORY_MANAGERS class Manager # @return [Workspace] the workspace attr_reader :ws # Create a repository manager # # @param [Workspace] ws the underlying workspace def initialize(ws) @ws = ws end def install(definitions) end def os_dependencies [] end end end end
Version data entries
15 entries across 15 versions & 1 rubygems