Class: AppMap::Config::Directory
- Inherits:
-
Path
- Object
- Struct
- PathStruct
- Path
- AppMap::Config::Directory
- Defined in:
- lib/appmap/config/directory.rb
Overview
A normal directory is scanned for AppMap features without interpreting the directory as a ‘package’.
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Path
Attributes inherited from PathStruct
Instance Method Summary collapse
- #children ⇒ Object
-
#initialize(path) ⇒ Directory
constructor
A new instance of Directory.
Methods inherited from Path
Constructor Details
#initialize(path) ⇒ Directory
Returns a new instance of Directory.
9 10 11 |
# File 'lib/appmap/config/directory.rb', line 9 def initialize(path) super end |
Instance Method Details
#children ⇒ Object
14 15 16 |
# File 'lib/appmap/config/directory.rb', line 14 def children child_files.sort + child_directories.sort end |