Class: Lite::Ruby::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/lite/ruby/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

rubocop:disable Metrics/MethodLength



12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/lite/ruby/configuration.rb', line 12

def initialize
  @array = true
  @date = true
  @enumerable = true
  @hash = true
  @integer = true
  @kernel = true
  @numeric = true
  @object = true
  @range = true
  @string = true
  @time = true
end

Instance Attribute Details

#arrayObject

Returns the value of attribute array.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def array
  @array
end

#dateObject

Returns the value of attribute date.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def date
  @date
end

#enumerableObject

Returns the value of attribute enumerable.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def enumerable
  @enumerable
end

#hashObject

Returns the value of attribute hash.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def hash
  @hash
end

#integerObject

Returns the value of attribute integer.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def integer
  @integer
end

#kernelObject

Returns the value of attribute kernel.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def kernel
  @kernel
end

#numericObject

Returns the value of attribute numeric.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def numeric
  @numeric
end

#objectObject

Returns the value of attribute object.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def object
  @object
end

#rangeObject

Returns the value of attribute range.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def range
  @range
end

#stringObject

Returns the value of attribute string.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def string
  @string
end

#timeObject

Returns the value of attribute time.



8
9
10
# File 'lib/lite/ruby/configuration.rb', line 8

def time
  @time
end