├── .gitignore ├── .travis.yml ├── CHANGELOG.txt ├── LICENSE.txt ├── README.md └── src ├── main └── groovy │ └── com │ └── gmongo │ ├── GMongo.groovy │ ├── GMongoClient.groovy │ └── internal │ ├── DBCollectionPatcher.groovy │ ├── DBCursorPatcher.groovy │ ├── DBPatcher.groovy │ └── Patcher.groovy └── test └── groovy └── com └── gmongo ├── AggregationTest.groovy ├── DBCollectionTest.groovy ├── DBCursorTest.groovy ├── DBRefTest.groovy ├── DBTest.groovy ├── GMongoClientTest.groovy ├── GMongoTest.groovy ├── IntegrationTestCase.groovy ├── MapReduceTest.groovy ├── UpdateClosureDelegateConcurrencyBugTest.groovy └── UsageTest.groovy /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.swp 3 | .gradle 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/README.md -------------------------------------------------------------------------------- /src/main/groovy/com/gmongo/GMongo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/main/groovy/com/gmongo/GMongo.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/gmongo/GMongoClient.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/main/groovy/com/gmongo/GMongoClient.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/gmongo/internal/DBCollectionPatcher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/main/groovy/com/gmongo/internal/DBCollectionPatcher.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/gmongo/internal/DBCursorPatcher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/main/groovy/com/gmongo/internal/DBCursorPatcher.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/gmongo/internal/DBPatcher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/main/groovy/com/gmongo/internal/DBPatcher.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/gmongo/internal/Patcher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/main/groovy/com/gmongo/internal/Patcher.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/AggregationTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/AggregationTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/DBCollectionTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/DBCollectionTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/DBCursorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/DBCursorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/DBRefTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/DBRefTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/DBTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/DBTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/GMongoClientTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/GMongoClientTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/GMongoTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/GMongoTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/IntegrationTestCase.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/IntegrationTestCase.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/MapReduceTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/MapReduceTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/UpdateClosureDelegateConcurrencyBugTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/UpdateClosureDelegateConcurrencyBugTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gmongo/UsageTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poiati/gmongo/HEAD/src/test/groovy/com/gmongo/UsageTest.groovy --------------------------------------------------------------------------------