├── README ├── README.md └── .gitmodules /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # rutabaga 2 | Open Source RTB Client 3 | 4 | Build the client 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lib/node-mongodb-native"] 2 | path = lib/node-mongodb-native 3 | url = git://github.com/christkv/node-mongodb-native.git 4 | [submodule "lib/node_debug"] 5 | path = lib/node_debug 6 | url = git://github.com/Connorhd/node_debug.git 7 | --------------------------------------------------------------------------------