Class: Irbs::Config
- Inherits:
-
Object
- Object
- Irbs::Config
- Defined in:
- lib/irbs/config.rb
Instance Attribute Summary collapse
-
#ingore_constant ⇒ Object
Returns the value of attribute ingore_constant.
-
#paths ⇒ Object
Returns the value of attribute paths.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
12 13 14 15 16 |
# File 'lib/irbs/config.rb', line 12 def initialize @stdout = $stdout @ingore_constant = false @paths = [] end |
Instance Attribute Details
#ingore_constant ⇒ Object
Returns the value of attribute ingore_constant.
8 9 10 |
# File 'lib/irbs/config.rb', line 8 def ingore_constant @ingore_constant end |
#paths ⇒ Object
Returns the value of attribute paths.
10 11 12 |
# File 'lib/irbs/config.rb', line 10 def paths @paths end |
#stdout ⇒ Object
Returns the value of attribute stdout.
6 7 8 |
# File 'lib/irbs/config.rb', line 6 def stdout @stdout end |