BUMP 0.17.1 added mongo_ext notice
This commit is contained in:
parent
cd44c3c918
commit
e1e6d4339a
4
HISTORY
4
HISTORY
|
@ -1,3 +1,7 @@
|
|||
0.17.1 2009-11-17
|
||||
* Index ordering fix
|
||||
* Notice to install mongo_ext
|
||||
|
||||
0.17 2009-11-16
|
||||
* Performance improvements
|
||||
* large document inserts twice as fast as 0.16
|
||||
|
|
|
@ -23,11 +23,13 @@ begin
|
|||
BSON_SERIALIZER = CBson
|
||||
rescue LoadError
|
||||
BSON_SERIALIZER = BSON
|
||||
warn "\n**Notice: C extension not detected. This is required for optimum MongoDB Ruby driver performance."
|
||||
warn " You can install the extension as follows:\n gem install mongo_ext\n"
|
||||
end
|
||||
|
||||
module Mongo
|
||||
ASCENDING = 1
|
||||
DESCENDING = -1
|
||||
|
||||
VERSION = "0.17"
|
||||
VERSION = "0.17.1"
|
||||
end
|
||||
|
|
|
@ -14,8 +14,6 @@
|
|||
# limitations under the License.
|
||||
# ++
|
||||
|
||||
require 'mongo/db'
|
||||
|
||||
module Mongo
|
||||
|
||||
# A connection to MongoDB.
|
||||
|
|
Loading…
Reference in New Issue