2009-11-25 16:43:25 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2009-10-26 19:34:45 +00:00
|
|
|
|
2009-12-01 18:49:57 +00:00
|
|
|
module Mongo
|
2010-04-29 15:11:53 +00:00
|
|
|
VERSION = "1.0"
|
2009-12-01 18:49:57 +00:00
|
|
|
end
|
|
|
|
|
2010-01-08 20:43:13 +00:00
|
|
|
module Mongo
|
2010-03-16 19:59:26 +00:00
|
|
|
ASCENDING = 1
|
2010-01-08 20:43:13 +00:00
|
|
|
DESCENDING = -1
|
2010-03-16 19:59:26 +00:00
|
|
|
GEO2D = '2d'
|
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
|
|
|
|
|
2010-04-12 17:53:18 +00:00
|
|
|
OP_QUERY_TAILABLE = 2
|
2010-01-08 20:43:13 +00:00
|
|
|
OP_QUERY_SLAVE_OK = 4
|
|
|
|
OP_QUERY_NO_CURSOR_TIMEOUT = 16
|
2010-04-12 15:57:14 +00:00
|
|
|
|
|
|
|
DEFAULT_BATCH_SIZE = 100
|
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'
|
2009-10-22 18:10:12 +00:00
|
|
|
require 'mongo/util/support'
|
2010-03-16 17:56:30 +00:00
|
|
|
require 'mongo/util/core_ext'
|
2009-10-26 18:54:33 +00:00
|
|
|
require 'mongo/util/server_version'
|
2009-10-20 19:44:46 +00:00
|
|
|
|
2010-01-11 16:38:35 +00:00
|
|
|
require 'mongo/collection'
|
2009-08-20 22:48:09 +00:00
|
|
|
require 'mongo/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'
|
2010-05-05 15:07:52 +00:00
|
|
|
require 'mongo/gridfs/grid_ext'
|
2010-02-12 23:03:07 +00:00
|
|
|
require 'mongo/gridfs/grid'
|
|
|
|
require 'mongo/gridfs/grid_io'
|
2010-02-18 21:31:25 +00:00
|
|
|
require 'mongo/gridfs/grid_file_system'
|