├── .gitignore ├── .hgignore ├── CONTRIBUTORS.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.textile ├── django_rules ├── __init__.py ├── backends.py ├── decorators.py ├── exceptions.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── sync_rules.py ├── models.py ├── tests │ ├── __init__.py │ ├── models.py │ ├── runtests.py │ ├── test_core.py │ ├── test_decorators.py │ ├── test_settings.py │ ├── utils.py │ ├── utils2.py │ └── utils3.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/.hgignore -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/README.textile -------------------------------------------------------------------------------- /django_rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_rules/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/backends.py -------------------------------------------------------------------------------- /django_rules/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/decorators.py -------------------------------------------------------------------------------- /django_rules/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/exceptions.py -------------------------------------------------------------------------------- /django_rules/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_rules/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_rules/management/commands/sync_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/management/commands/sync_rules.py -------------------------------------------------------------------------------- /django_rules/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/models.py -------------------------------------------------------------------------------- /django_rules/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/tests/__init__.py -------------------------------------------------------------------------------- /django_rules/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/tests/models.py -------------------------------------------------------------------------------- /django_rules/tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/tests/runtests.py -------------------------------------------------------------------------------- /django_rules/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/tests/test_core.py -------------------------------------------------------------------------------- /django_rules/tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/tests/test_decorators.py -------------------------------------------------------------------------------- /django_rules/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/tests/test_settings.py -------------------------------------------------------------------------------- /django_rules/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/tests/utils.py -------------------------------------------------------------------------------- /django_rules/tests/utils2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/tests/utils2.py -------------------------------------------------------------------------------- /django_rules/tests/utils3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/tests/utils3.py -------------------------------------------------------------------------------- /django_rules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/django_rules/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraujop/django-rules/HEAD/setup.py --------------------------------------------------------------------------------