Class: Erbee::Configuration
- Inherits:
-
Object
- Object
- Erbee::Configuration
- Defined in:
- lib/erbee/configuration.rb
Instance Attribute Summary collapse
-
#depth ⇒ Object
Returns the value of attribute depth.
-
#output_path ⇒ Object
Returns the value of attribute output_path.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
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
#depth ⇒ Object
Returns the value of attribute depth.
3 4 5 |
# File 'lib/erbee/configuration.rb', line 3 def depth @depth end |
#output_path ⇒ Object
Returns the value of attribute output_path.
3 4 5 |
# File 'lib/erbee/configuration.rb', line 3 def output_path @output_path end |