lib/active_fedora/rdf.rb in active-fedora-7.3.1 vs lib/active_fedora/rdf.rb in active-fedora-8.0.0.rc1
- old
+ new
@@ -1,19 +1,23 @@
module ActiveFedora
- module Rdf
+ module RDF
extend ActiveSupport::Autoload
+ autoload :Fcrepo
autoload :Indexing
autoload :Identifiable
autoload :ObjectResource
+ autoload :Persistence
+ autoload :ProjectHydra
- # Aliases for deprecated ActiveFedora::Rdf Classes/Modules
+ # Aliases for deprecated ActiveFedora::RDF Classes/Modules
# TODO: Remove in 8.0.0
Resource = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveFedora::Rdf::Resource', 'ActiveTriples::Resource')
Term = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveFedora::Rdf::Term', 'ActiveTriples::Term')
List = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveFedora::Rdf::List', 'ActiveTriples::List')
Configurable = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveFedora::Rdf::Configurable', 'ActiveTriples::Configurable')
Properties = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveFedora::Rdf::Properties', 'ActiveTriples::Properties')
Repositories = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveFedora::Rdf::Repositories', 'ActiveTriples::Repositories')
NodeConfig = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveFedora::Rdf::NodeConfig', 'ActiveTriples::NodeConfig')
NestedAttributes = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveFedora::Rdf::NestedAttributes', 'ActiveTriples::NestedAttributes')
end
+ Rdf = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveFedora::Rdf', 'ActiveFedora::RDF')
end