Class: AppMap::Config::Configuration
- Inherits:
-
Object
- Object
- AppMap::Config::Configuration
- Defined in:
- lib/appmap/config.rb
Instance Attribute Summary collapse
-
#files ⇒ Object
readonly
Returns the value of attribute files.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#named_functions ⇒ Object
readonly
Returns the value of attribute named_functions.
-
#packages ⇒ Object
readonly
Returns the value of attribute packages.
Instance Method Summary collapse
-
#initialize(name) ⇒ Configuration
constructor
A new instance of Configuration.
- #source_locations ⇒ Object
Constructor Details
#initialize(name) ⇒ Configuration
Returns a new instance of Configuration.
12 13 14 15 16 17 |
# File 'lib/appmap/config.rb', line 12 def initialize(name) @name = name @packages = [] @files = [] @named_functions = [] end |
Instance Attribute Details
#files ⇒ Object (readonly)
Returns the value of attribute files.
10 11 12 |
# File 'lib/appmap/config.rb', line 10 def files @files end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
10 11 12 |
# File 'lib/appmap/config.rb', line 10 def name @name end |
#named_functions ⇒ Object (readonly)
Returns the value of attribute named_functions.
10 11 12 |
# File 'lib/appmap/config.rb', line 10 def named_functions @named_functions end |
#packages ⇒ Object (readonly)
Returns the value of attribute packages.
10 11 12 |
# File 'lib/appmap/config.rb', line 10 def packages @packages end |
Instance Method Details
#source_locations ⇒ Object
19 20 21 |
# File 'lib/appmap/config.rb', line 19 def source_locations packages + files + named_functions end |