Metadata-Version: 1.1
Name: django-south-compass
Version: 0.0.1a0
Summary: Compass is a tool to guide your south migrations.
Home-page: http://github.com/agiliq/compass
Author: Agiliq Solutions
Author-email: hello@agiliq.com
License: BSD
Description: django-south-compass
        ====================
        
        .. image:: https://travis-ci.org/agiliq/compass.png?branch=master
           :target: https://travis-ci.org/agiliq/compass
           :alt: Build Status
        
        What is it?
        -----------
        
        Django south compass is a tool to guide your south migrations.
        
        It is a git hook that keeps your south migrations in sync with your repository.
        
        Installation
        ------------
        
        .. code-block:: bash
        
            $ pip install django-south-compass
        
        Usage
        -----
        
        Go to your git repo and do:
        
        .. code-block:: bash
        
            $ django-south-compass install
        
        This will setup a git hook so that whenever you checkout a branch, you're
        migrations are synced up.
        
        Eg.
        
        .. code-block:: bash
        
            $ git branch
                * master
                feature1
                feature2
        
            $ git checkout feature1
            # Migrates to any new migrations added in feature1
        
            $ git checkout master
            # Migrates back to the last migration in master
        
            $ git checkout feature2
            # Migrates to any new migrations added in feature2
        
            $ git checkout feature1
            # Migrates back to the last migration common between
            # feature1 and feature2, then migrates forward to feature1
        
        
        License
        -------
        
        3 Clause BSD.
        
        Bug report and Help
        -------------------
        
        For bug reports open a github ticket. Patches gratefully accepted. Need help? `Contact us here`_
        
        .. _contact us here: http://agiliq.com/contactus
        
        Thanks
        ------
        
        Django south compass was inspired by `hookup`_ for rails.
        
        .. _hookup: https://github.com/tpope/hookup
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
