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

Returns a new instance of Configuration.



8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/active_object/configuration.rb', line 8

def initialize
  @autoload_array = true
  @autoload_date = true
  @autoload_enumerable = true
  @autoload_hash = true
  @autoload_integer = 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.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_array
  @autoload_array
end

#autoload_dateObject

Returns the value of attribute autoload_date.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_date
  @autoload_date
end

#autoload_enumerableObject

Returns the value of attribute autoload_enumerable.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_enumerable
  @autoload_enumerable
end

#autoload_hashObject

Returns the value of attribute autoload_hash.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_hash
  @autoload_hash
end

#autoload_integerObject

Returns the value of attribute autoload_integer.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_integer
  @autoload_integer
end

#autoload_numericObject

Returns the value of attribute autoload_numeric.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_numeric
  @autoload_numeric
end

#autoload_objectObject

Returns the value of attribute autoload_object.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_object
  @autoload_object
end

#autoload_rangeObject

Returns the value of attribute autoload_range.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_range
  @autoload_range
end

#autoload_stringObject

Returns the value of attribute autoload_string.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_string
  @autoload_string
end

#autoload_timeObject

Returns the value of attribute autoload_time.



3
4
5
# File 'lib/active_object/configuration.rb', line 3

def autoload_time
  @autoload_time
end