mongo-ruby-driver/lib/mongo.rb

47 lines
937 B
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
2010-06-16 03:05:46 +00:00
VERSION = "1.0.3"
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
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
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/server_version'
2010-01-11 16:38:35 +00:00
require 'mongo/collection'
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'
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'