Class: ActiveObject::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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_arrayObject

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_dateObject

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_enumerableObject

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_hashObject

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_integerObject

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_kernelObject

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_numericObject

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_objectObject

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_rangeObject

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_stringObject

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_timeObject

Returns the value of attribute autoload_time.



6
7
8
# File 'lib/active_object/configuration.rb', line 6

def autoload_time
  @autoload_time
end