├── .gitignore ├── .npmignore ├── .tm_properties ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── package.json ├── src └── utils.coffee └── test ├── fixtures ├── fake-dump-dir │ └── databasename │ │ └── .gitignore └── invalid-dump-dir │ ├── databasename │ └── .gitignore │ └── secondfolder │ └── .gitignore ├── getConnectionInfo.coffee ├── makeDumpCommand.coffee ├── makeFindCommand.coffee ├── makeRestoreCommand.coffee └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.tm_properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/.tm_properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/package.json -------------------------------------------------------------------------------- /src/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/src/utils.coffee -------------------------------------------------------------------------------- /test/fixtures/fake-dump-dir/databasename/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/invalid-dump-dir/databasename/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/invalid-dump-dir/secondfolder/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/getConnectionInfo.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/test/getConnectionInfo.coffee -------------------------------------------------------------------------------- /test/makeDumpCommand.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/test/makeDumpCommand.coffee -------------------------------------------------------------------------------- /test/makeFindCommand.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/test/makeFindCommand.coffee -------------------------------------------------------------------------------- /test/makeRestoreCommand.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/test/makeRestoreCommand.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrne/mongo-utils/HEAD/test/mocha.opts --------------------------------------------------------------------------------