├── .gitignore ├── CHANGELOG ├── Gemfile ├── README.rdoc ├── Rakefile ├── VERSION ├── em-mongo.gemspec ├── examples ├── legacy.rb └── readme.rb ├── lib ├── em-mongo.rb └── em-mongo │ ├── auth │ ├── Authentication.rb │ ├── mongodb_cr.rb │ └── scram.rb │ ├── collection.rb │ ├── connection.rb │ ├── conversions.rb │ ├── core_ext.rb │ ├── cursor.rb │ ├── database.rb │ ├── exceptions.rb │ ├── prev.rb │ ├── request_response.rb │ ├── server_response.rb │ ├── support.rb │ └── version.rb └── spec ├── gem ├── Gemfile ├── bundler.rb └── rubygems.rb ├── integration ├── collection_spec.rb ├── connection_spec.rb ├── cursor_spec.rb ├── database_spec.rb └── request_response_spec.rb ├── spec_helper.rb └── unit └── bson_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | .bundle 3 | *.gem 4 | vendor 5 | .rvmrc 6 | .ruby-version 7 | .idea 8 | *~ 9 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/Gemfile -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.6.1 2 | -------------------------------------------------------------------------------- /em-mongo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/em-mongo.gemspec -------------------------------------------------------------------------------- /examples/legacy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/examples/legacy.rb -------------------------------------------------------------------------------- /examples/readme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/examples/readme.rb -------------------------------------------------------------------------------- /lib/em-mongo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo.rb -------------------------------------------------------------------------------- /lib/em-mongo/auth/Authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/auth/Authentication.rb -------------------------------------------------------------------------------- /lib/em-mongo/auth/mongodb_cr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/auth/mongodb_cr.rb -------------------------------------------------------------------------------- /lib/em-mongo/auth/scram.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/auth/scram.rb -------------------------------------------------------------------------------- /lib/em-mongo/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/collection.rb -------------------------------------------------------------------------------- /lib/em-mongo/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/connection.rb -------------------------------------------------------------------------------- /lib/em-mongo/conversions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/conversions.rb -------------------------------------------------------------------------------- /lib/em-mongo/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/core_ext.rb -------------------------------------------------------------------------------- /lib/em-mongo/cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/cursor.rb -------------------------------------------------------------------------------- /lib/em-mongo/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/database.rb -------------------------------------------------------------------------------- /lib/em-mongo/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/exceptions.rb -------------------------------------------------------------------------------- /lib/em-mongo/prev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/prev.rb -------------------------------------------------------------------------------- /lib/em-mongo/request_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/request_response.rb -------------------------------------------------------------------------------- /lib/em-mongo/server_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/server_response.rb -------------------------------------------------------------------------------- /lib/em-mongo/support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/support.rb -------------------------------------------------------------------------------- /lib/em-mongo/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/lib/em-mongo/version.rb -------------------------------------------------------------------------------- /spec/gem/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/gem/Gemfile -------------------------------------------------------------------------------- /spec/gem/bundler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/gem/bundler.rb -------------------------------------------------------------------------------- /spec/gem/rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/gem/rubygems.rb -------------------------------------------------------------------------------- /spec/integration/collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/integration/collection_spec.rb -------------------------------------------------------------------------------- /spec/integration/connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/integration/connection_spec.rb -------------------------------------------------------------------------------- /spec/integration/cursor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/integration/cursor_spec.rb -------------------------------------------------------------------------------- /spec/integration/database_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/integration/database_spec.rb -------------------------------------------------------------------------------- /spec/integration/request_response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/integration/request_response_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/bson_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcg/em-mongo/HEAD/spec/unit/bson_spec.rb --------------------------------------------------------------------------------