├── .gitignore ├── .travis.yml ├── LICENSE ├── npm-shrinkwrap.json ├── package.json ├── readme.md ├── src ├── api.js ├── disco.js ├── index.js └── xmpp.js └── tests ├── client ├── .gitignore ├── index.js ├── npm-shrinkwrap.json ├── package.json └── readme.md └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/LICENSE -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/readme.md -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/src/api.js -------------------------------------------------------------------------------- /src/disco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/src/disco.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/src/index.js -------------------------------------------------------------------------------- /src/xmpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/src/xmpp.js -------------------------------------------------------------------------------- /tests/client/.gitignore: -------------------------------------------------------------------------------- 1 | secret.js 2 | -------------------------------------------------------------------------------- /tests/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/tests/client/index.js -------------------------------------------------------------------------------- /tests/client/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/tests/client/npm-shrinkwrap.json -------------------------------------------------------------------------------- /tests/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/tests/client/package.json -------------------------------------------------------------------------------- /tests/client/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/tests/client/readme.md -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatSecure/RubDub/HEAD/tests/test.js --------------------------------------------------------------------------------