mongo-ruby-driver/lib/mongo.rb

64 lines
1.4 KiB
Ruby
Raw Normal View History

# encoding: UTF-8
2009-11-25 16:43:25 +00:00
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2009-10-26 19:34:45 +00:00
module Mongo
2011-01-06 15:33:54 +00:00
VERSION = "1.2.rc2"
end
2010-01-08 20:43:13 +00:00
module Mongo
ASCENDING = 1
2010-01-08 20:43:13 +00:00
DESCENDING = -1
GEO2D = '2d'
2010-01-08 20:43:13 +00:00
DEFAULT_MAX_BSON_SIZE = 4 * 1024 * 1024
2010-01-08 20:43:13 +00:00
module Constants
OP_REPLY = 1
OP_MSG = 1000
OP_UPDATE = 2001
OP_INSERT = 2002
OP_QUERY = 2004
OP_GET_MORE = 2005
OP_DELETE = 2006
OP_KILL_CURSORS = 2007
OP_QUERY_TAILABLE = 2 ** 1
OP_QUERY_SLAVE_OK = 2 ** 2
OP_QUERY_OPLOG_REPLAY = 2 ** 3
OP_QUERY_NO_CURSOR_TIMEOUT = 2 ** 4
OP_QUERY_AWAIT_DATA = 2 ** 5
OP_QUERY_EXHAUST = 2 ** 6
REPLY_CURSOR_NOT_FOUND = 2 ** 0
REPLY_QUERY_FAILURE = 2 ** 1
REPLY_SHARD_CONFIG_STALE = 2 ** 2
REPLY_AWAIT_CAPABLE = 2 ** 3
2010-01-08 20:43:13 +00:00
end
end
2010-04-05 14:39:55 +00:00
require 'bson'
2010-04-06 21:56:21 +00:00
require 'mongo/util/conversions'
require 'mongo/util/support'
require 'mongo/util/core_ext'
require 'mongo/util/pool'
require 'mongo/util/server_version'
require 'mongo/util/uri_parser'
2010-01-11 16:38:35 +00:00
require 'mongo/collection'
require 'mongo/connection'
require 'mongo/repl_set_connection'
2008-11-22 01:00:51 +00:00
require 'mongo/cursor'
2010-01-11 16:38:35 +00:00
require 'mongo/db'
require 'mongo/exceptions'
require 'mongo/gridfs/grid_ext'
2010-02-12 23:03:07 +00:00
require 'mongo/gridfs/grid'
require 'mongo/gridfs/grid_io'
if RUBY_PLATFORM =~ /java/
require 'mongo/gridfs/grid_io_fix'
end
2010-02-18 21:31:25 +00:00
require 'mongo/gridfs/grid_file_system'