Class: Irbs::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/irbs/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

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_constantObject

Returns the value of attribute ingore_constant.



8
9
10
# File 'lib/irbs/config.rb', line 8

def ingore_constant
  @ingore_constant
end

#pathsObject

Returns the value of attribute paths.



10
11
12
# File 'lib/irbs/config.rb', line 10

def paths
  @paths
end

#stdoutObject

Returns the value of attribute stdout.



6
7
8
# File 'lib/irbs/config.rb', line 6

def stdout
  @stdout
end