Class: Erbee::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/erbee/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



5
6
7
8
# File 'lib/erbee/configuration.rb', line 5

def initialize
  @depth = 2
  @output_path = "er_diagram.md"
end

Instance Attribute Details

#depthObject

Returns the value of attribute depth.



3
4
5
# File 'lib/erbee/configuration.rb', line 3

def depth
  @depth
end

#output_pathObject

Returns the value of attribute output_path.



3
4
5
# File 'lib/erbee/configuration.rb', line 3

def output_path
  @output_path
end