Loader

class
Superclass
Object
Extended With
Loggability
Pluggability

Abstract base class for Arborist loader strategies

Public Instance Methods

anchor
monitors()

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
anchor
nodes()

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
anchor
observers()

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