20 lines
368 B
Ruby
20 lines
368 B
Ruby
require 'mongo/types/binary'
|
|
require 'mongo/types/dbref'
|
|
require 'mongo/types/objectid'
|
|
require 'mongo/types/regexp_of_holding'
|
|
|
|
require 'mongo/errors'
|
|
require 'mongo/connection'
|
|
require 'mongo/message'
|
|
require 'mongo/db'
|
|
require 'mongo/cursor'
|
|
require 'mongo/collection'
|
|
require 'mongo/admin'
|
|
|
|
module Mongo
|
|
ASCENDING = 1
|
|
DESCENDING = -1
|
|
|
|
VERSION = "0.14.1"
|
|
end
|