Class: Ukiryu::Configuration
- Inherits:
-
Object
- Object
- Ukiryu::Configuration
- Defined in:
- lib/ukiryu.rb
Overview
Configuration class for global settings
Instance Attribute Summary collapse
-
#default_shell ⇒ Object
Returns the value of attribute default_shell.
-
#register_path ⇒ Object
Returns the value of attribute register_path.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
83 84 85 86 |
# File 'lib/ukiryu.rb', line 83 def initialize @default_shell = nil # Auto-detect by default @register_path = nil end |
Instance Attribute Details
#default_shell ⇒ Object
Returns the value of attribute default_shell.
81 82 83 |
# File 'lib/ukiryu.rb', line 81 def default_shell @default_shell end |
#register_path ⇒ Object
Returns the value of attribute register_path.
81 82 83 |
# File 'lib/ukiryu.rb', line 81 def register_path @register_path end |