Class: ActiveObject::Configuration
- Inherits:
-
Object
- Object
- ActiveObject::Configuration
- Defined in:
- lib/active_object/configuration.rb
Instance Attribute Summary collapse
-
#autoload_array ⇒ Object
Returns the value of attribute autoload_array.
-
#autoload_date ⇒ Object
Returns the value of attribute autoload_date.
-
#autoload_enumerable ⇒ Object
Returns the value of attribute autoload_enumerable.
-
#autoload_hash ⇒ Object
Returns the value of attribute autoload_hash.
-
#autoload_integer ⇒ Object
Returns the value of attribute autoload_integer.
-
#autoload_kernel ⇒ Object
Returns the value of attribute autoload_kernel.
-
#autoload_numeric ⇒ Object
Returns the value of attribute autoload_numeric.
-
#autoload_object ⇒ Object
Returns the value of attribute autoload_object.
-
#autoload_range ⇒ Object
Returns the value of attribute autoload_range.
-
#autoload_string ⇒ Object
Returns the value of attribute autoload_string.
-
#autoload_time ⇒ Object
Returns the value of attribute autoload_time.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
rubocop:disable Metrics/MethodLength.
Constructor Details
#initialize ⇒ Configuration
rubocop:disable Metrics/MethodLength
11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/active_object/configuration.rb', line 11 def initialize @autoload_array = true @autoload_date = true @autoload_enumerable = true @autoload_hash = true @autoload_integer = true @autoload_kernel = true @autoload_numeric = true @autoload_object = true @autoload_range = true @autoload_string = true @autoload_time = true end |
Instance Attribute Details
#autoload_array ⇒ Object
Returns the value of attribute autoload_array.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_array @autoload_array end |
#autoload_date ⇒ Object
Returns the value of attribute autoload_date.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_date @autoload_date end |
#autoload_enumerable ⇒ Object
Returns the value of attribute autoload_enumerable.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_enumerable @autoload_enumerable end |
#autoload_hash ⇒ Object
Returns the value of attribute autoload_hash.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_hash @autoload_hash end |
#autoload_integer ⇒ Object
Returns the value of attribute autoload_integer.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_integer @autoload_integer end |
#autoload_kernel ⇒ Object
Returns the value of attribute autoload_kernel.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_kernel @autoload_kernel end |
#autoload_numeric ⇒ Object
Returns the value of attribute autoload_numeric.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_numeric @autoload_numeric end |
#autoload_object ⇒ Object
Returns the value of attribute autoload_object.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_object @autoload_object end |
#autoload_range ⇒ Object
Returns the value of attribute autoload_range.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_range @autoload_range end |
#autoload_string ⇒ Object
Returns the value of attribute autoload_string.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_string @autoload_string end |
#autoload_time ⇒ Object
Returns the value of attribute autoload_time.
6 7 8 |
# File 'lib/active_object/configuration.rb', line 6 def autoload_time @autoload_time end |