├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README ├── Rakefile ├── embedded-mongo.gemspec ├── lib ├── embedded-mongo.rb └── embedded-mongo │ ├── backend.rb │ ├── backend │ ├── collection.rb │ ├── db.rb │ └── manager.rb │ ├── collection.rb │ ├── connection.rb │ ├── cursor.rb │ ├── db.rb │ ├── util.rb │ └── version.rb └── test ├── functional └── interface_test.rb └── imported ├── db_api_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/Rakefile -------------------------------------------------------------------------------- /embedded-mongo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/embedded-mongo.gemspec -------------------------------------------------------------------------------- /lib/embedded-mongo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo/backend.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/backend/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo/backend/collection.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/backend/db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo/backend/db.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/backend/manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo/backend/manager.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo/collection.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo/connection.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo/cursor.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo/db.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/lib/embedded-mongo/util.rb -------------------------------------------------------------------------------- /lib/embedded-mongo/version.rb: -------------------------------------------------------------------------------- 1 | module EmbeddedMongo 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /test/functional/interface_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/test/functional/interface_test.rb -------------------------------------------------------------------------------- /test/imported/db_api_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/test/imported/db_api_test.rb -------------------------------------------------------------------------------- /test/imported/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdb/embedded-mongo/HEAD/test/imported/test_helper.rb --------------------------------------------------------------------------------