├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── lib ├── mongo.ex ├── mongo_auth.ex ├── mongo_collection.ex ├── mongo_cursor.ex ├── mongo_db.ex ├── mongo_find.ex ├── mongo_helpers.ex ├── mongo_request.ex ├── mongo_response.ex └── mongo_server.ex ├── mix.exs ├── mix.lock └── test ├── mongo_aggr_test.exs ├── mongo_collection_test.exs ├── mongo_crud_test.exs ├── mongo_cursor_test.exs ├── mongo_db_test.exs ├── mongo_server_test.exs ├── mongo_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /lib/mongo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo.ex -------------------------------------------------------------------------------- /lib/mongo_auth.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo_auth.ex -------------------------------------------------------------------------------- /lib/mongo_collection.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo_collection.ex -------------------------------------------------------------------------------- /lib/mongo_cursor.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo_cursor.ex -------------------------------------------------------------------------------- /lib/mongo_db.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo_db.ex -------------------------------------------------------------------------------- /lib/mongo_find.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo_find.ex -------------------------------------------------------------------------------- /lib/mongo_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo_helpers.ex -------------------------------------------------------------------------------- /lib/mongo_request.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo_request.ex -------------------------------------------------------------------------------- /lib/mongo_response.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo_response.ex -------------------------------------------------------------------------------- /lib/mongo_server.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/lib/mongo_server.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/mix.lock -------------------------------------------------------------------------------- /test/mongo_aggr_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/test/mongo_aggr_test.exs -------------------------------------------------------------------------------- /test/mongo_collection_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/test/mongo_collection_test.exs -------------------------------------------------------------------------------- /test/mongo_crud_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/test/mongo_crud_test.exs -------------------------------------------------------------------------------- /test/mongo_cursor_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/test/mongo_cursor_test.exs -------------------------------------------------------------------------------- /test/mongo_db_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/test/mongo_db_test.exs -------------------------------------------------------------------------------- /test/mongo_server_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/test/mongo_server_test.exs -------------------------------------------------------------------------------- /test/mongo_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/test/mongo_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoy/elixir-mongo/HEAD/test/test_helper.exs --------------------------------------------------------------------------------