class Autoproj::Ops::Tools::FakePackage
Data structure used to use autobuild importers without a package, to import configuration data.
It has to match the interface of Autobuild::Package that is relevant for importers
Attributes
Used by the autobuild importers
Public Class Methods
Source
# File lib/autoproj/ops/tools.rb, line 20 def initialize(text_name, srcdir, importer = nil) super(text_name) @srcdir = srcdir @importer = importer @@packages.delete(text_name) end
Calls superclass method
Public Instance Methods
Source
# File lib/autoproj/ops/tools.rb, line 27 def import(**options) importer.import(self, **options) end