This repository was archived by the owner on Apr 17, 2018. It is now read-only.

Description
current (very undocumented):
def self.default_repository_name
:alternate
end
whould be nice to have a DSL repository
class Client
include DataMapper::Resource
repository :alternate
property :id, Serial
property :name, String
end
and a DataMapper.repository block should also set the default repository name:
DataMapper.repository(:alternate) {
class Client
include DataMapper::Resource
property :id, Serial
property :name, String
end
}