minor: docs
This commit is contained in:
parent
85076b2684
commit
e3d746096d
15
HISTORY
15
HISTORY
|
@ -1,3 +1,18 @@
|
|||
0.19 2010-3-1
|
||||
* Deprecated GridFS::GridStore. Grid and GridFileSystem classes replace
|
||||
the GridFS implementation with a simpler API and vastly-improved performance.
|
||||
See http://www.mongodb.org/display/DOCS/GridFS+in+Ruby for more details.
|
||||
* Safe mode for Grid and GridFileSystem.
|
||||
* Grid and GridFileSystem use Mime/Types to detect content type (if available)
|
||||
* Connection API simplified. Use Connection.paired for pairs and Connection.from_uri to
|
||||
use MongoDB's connection URI specification.
|
||||
* Authentication can be saved so that reauthentication happens automatically
|
||||
on reconnect.
|
||||
* Raise exception if authentication fails.
|
||||
* Raise exception if index creation fails.
|
||||
* Removed a number of deprecated methods and classes.
|
||||
* Several bug fixes.
|
||||
|
||||
0.18.3 2010-1-25
|
||||
* Convert docs to YARD
|
||||
* Support MongoDB extended JSON on ObjectID#to_json
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2009 10gen, Inc.
|
||||
* Copyright 2009-2010 10gen, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2009 10gen, Inc.
|
||||
* Copyright 2009-2010 10gen, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2009 10gen, Inc.
|
||||
* Copyright 2009-2010 10gen, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2009 10gen, Inc.
|
||||
* Copyright 2009-2010 10gen, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2009 10gen, Inc.
|
||||
* Copyright 2009-2010 10gen, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2009 10gen, Inc.
|
||||
* Copyright 2009-2010 10gen, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|||
s.rdoc_options = ['--main', 'README.rdoc', '--inline-source']
|
||||
s.extra_rdoc_files = ['README.rdoc']
|
||||
|
||||
s.authors = ['Jim Menard', 'Mike Dirolf']
|
||||
s.authors = ['Jim Menard', 'Mike Dirolf', 'Kyle Banker']
|
||||
s.email = 'mongodb-dev@googlegroups.com'
|
||||
s.homepage = 'http://www.mongodb.org'
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue