Abstract base class for Arborist loader strategies
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
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
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