├── .travis-runs-tests.sh ├── .travis.yml ├── LICENSE ├── README.md ├── django_bmemcached ├── __init__.py └── memcached.py ├── requirements_test.txt ├── setup.py ├── tests ├── __init__.py └── settings.py └── tox.ini /.travis-runs-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo service memcached start 3 | tox 4 | exit $? 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysonsantos/django-bmemcached/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysonsantos/django-bmemcached/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysonsantos/django-bmemcached/HEAD/README.md -------------------------------------------------------------------------------- /django_bmemcached/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysonsantos/django-bmemcached/HEAD/django_bmemcached/__init__.py -------------------------------------------------------------------------------- /django_bmemcached/memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysonsantos/django-bmemcached/HEAD/django_bmemcached/memcached.py -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- 1 | nose 2 | coverage 3 | python-binary-memcached 4 | tox -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysonsantos/django-bmemcached/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysonsantos/django-bmemcached/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysonsantos/django-bmemcached/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysonsantos/django-bmemcached/HEAD/tox.ini --------------------------------------------------------------------------------