class Arborist::Loader

Abstract base class for Arborist loader strategies

Public Instance Methods

monitors() click to toggle source

Return an Enumerator that yields Arborist::Monitors loaded from the target directory.

# File lib/arborist/loader.rb, line 29
def monitors
        raise NotImplementedError, "%p needs to implement #monitors"
end
nodes() click to toggle source

Return an Enumerator that yields Arborist::Nodes loaded from the target directory.

# File lib/arborist/loader.rb, line 22
def nodes
        raise NotImplementedError, "%p needs to implement #nodes"
end
observers() click to toggle source

Return an Enumerator that yields Arborist::Observers loaded from the target directory.

# File lib/arborist/loader.rb, line 36
def observers
        raise NotImplementedError, "%p needs to implement #observers"
end