class Autoproj::PackageManagers::PkgManager

Package manager interface for systems that use pkg (i.e. FreeBSD) as their package manager

Public Class Methods

new(ws) click to toggle source
Calls superclass method
# File lib/autoproj/package_managers/pkg_manager.rb, line 6
def initialize(ws)
    super(ws, true,
            %w[pkg install -y],
            %w[pkg install -y])
end