Class: Curtis::Configuration
- Inherits:
-
Object
- Object
- Curtis::Configuration
- Defined in:
- lib/curtis.rb
Instance Attribute Summary collapse
-
#hide_cursor ⇒ Object
Returns the value of attribute hide_cursor.
-
#interactive ⇒ Object
Returns the value of attribute interactive.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
53 54 55 56 |
# File 'lib/curtis.rb', line 53 def initialize @interactive = true @hide_cursor = true end |
Instance Attribute Details
#hide_cursor ⇒ Object
Returns the value of attribute hide_cursor.
51 52 53 |
# File 'lib/curtis.rb', line 51 def hide_cursor @hide_cursor end |
#interactive ⇒ Object
Returns the value of attribute interactive.
50 51 52 |
# File 'lib/curtis.rb', line 50 def interactive @interactive end |