Class: Lite::Ruby::Configuration
- Defined in:
- lib/lite/ruby/configuration.rb
Instance Attribute Summary collapse
-
#array ⇒ Object
Returns the value of attribute array.
-
#date ⇒ Object
Returns the value of attribute date.
-
#enumerable ⇒ Object
Returns the value of attribute enumerable.
-
#hash ⇒ Object
Returns the value of attribute hash.
-
#integer ⇒ Object
Returns the value of attribute integer.
-
#kernel ⇒ Object
Returns the value of attribute kernel.
-
#numeric ⇒ Object
Returns the value of attribute numeric.
-
#object ⇒ Object
Returns the value of attribute object.
-
#range ⇒ Object
Returns the value of attribute range.
-
#string ⇒ Object
Returns the value of attribute string.
-
#time ⇒ Object
Returns the value of attribute time.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
rubocop:disable Metrics/MethodLength.
Constructor Details
#initialize ⇒ Configuration
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
#array ⇒ Object
Returns the value of attribute array.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def array @array end |
#date ⇒ Object
Returns the value of attribute date.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def date @date end |
#enumerable ⇒ Object
Returns the value of attribute enumerable.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def enumerable @enumerable end |
#hash ⇒ Object
Returns the value of attribute hash.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def hash @hash end |
#integer ⇒ Object
Returns the value of attribute integer.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def integer @integer end |
#kernel ⇒ Object
Returns the value of attribute kernel.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def kernel @kernel end |
#numeric ⇒ Object
Returns the value of attribute numeric.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def numeric @numeric end |
#object ⇒ Object
Returns the value of attribute object.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def object @object end |
#range ⇒ Object
Returns the value of attribute range.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def range @range end |
#string ⇒ Object
Returns the value of attribute string.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def string @string end |
#time ⇒ Object
Returns the value of attribute time.
8 9 10 |
# File 'lib/lite/ruby/configuration.rb', line 8 def time @time end |