Class: Distincter2::D2EmptyConfig

Inherits:
D2Config
  • Object
show all
Defined in:
lib/distincter2/config.rb

Overview

Class representing an empty configuration for Distincter2. This class inherits from D2Config and initializes with an empty array of exclude_paths.

Instance Attribute Summary

Attributes inherited from D2Config

#exclude_paths, #version

Instance Method Summary collapse

Constructor Details

#initializevoid

Constructor without paths.



34
35
36
37
# File 'lib/distincter2/config.rb', line 34

def initialize
  # Calls the parent class's initialize method with an empty array of exclude_paths.
  super([])
end