lib/pricehubble.rb in pricehubble-0.3.0 vs lib/pricehubble.rb in pricehubble-0.4.0
- old
+ new
@@ -38,10 +38,11 @@
autoload :PropertyQualities, 'pricehubble/entity/property_qualities'
autoload :PropertyType, 'pricehubble/entity/property_type'
autoload :Location, 'pricehubble/entity/location'
autoload :Address, 'pricehubble/entity/address'
autoload :Coordinates, 'pricehubble/entity/coordinates'
+ autoload :Dossier, 'pricehubble/entity/dossier'
# Some general purpose utilities
module Utils
autoload :Decision, 'pricehubble/utils/decision'
autoload :Bangers, 'pricehubble/utils/bangers'
@@ -75,17 +76,19 @@
end
autoload :Base, 'pricehubble/client/base'
autoload :Authentication, 'pricehubble/client/authentication'
autoload :Valuation, 'pricehubble/client/valuation'
+ autoload :Dossiers, 'pricehubble/client/dossiers'
end
# Separated features of an entity instance
module EntityConcern
autoload :Callbacks, 'pricehubble/entity/concern/callbacks'
autoload :Attributes, 'pricehubble/entity/concern/attributes'
autoload :Associations, 'pricehubble/entity/concern/associations'
autoload :Client, 'pricehubble/entity/concern/client'
+ autoload :Persistence, 'pricehubble/entity/concern/persistence'
# Some custom typed attribute helpers
module Attributes
base = 'pricehubble/entity/concern/attributes'
autoload :DateArray, "#{base}/date_array"