Sha256: 6ab5638217798d3e443e9de63919b09023032f51e8e1746b8fcc6dfa281d04a6

Contents?: true

Size: 1.31 KB

Versions: 3

Compression:

Stored size: 1.31 KB

Contents

dandelion
=========

Install
-------
Ensure that Ruby and RubyGems are installed, then run:

    $ gem install dandelion
    
Alternatively, you can build the gem yourself:

    $ git clone git://github.com/scottbnel/dandelion.git
    $ cd dandelion
    $ rake install
    
Config
------
Configuration options are specified in a YAML file (Dandelion looks for a file
named `dandelion.yml` by default):

    # Required
    scheme: sftp
    host: example.com
    username: user
    password: pass
    path: path/to/deployment
    
    # Optional
    exclude:
        - .gitignore
        - dandelion.yml
    
Usage
-----
From the root directory of a Git repository, run:

    $ dandelion
    
Or:

    $ dandelion path/to/config.yml
    
This will deploy the local `HEAD` revision to the server specified in the config
file.  Dandelion keeps track of the most recently deployed revision so that only
files which have changed since the last deployment need to be transferred.

For a more complete summary of usage options, run:

    $ dandelion -h
    Usage: dandelion [options] [config_file]
        -f, --force                      Force deployment
        -s, --status                     Display revision status
        -v, --version                    Display the current version
        -h, --help                       Display this screen

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dandelion-0.1.7 README.md
dandelion-0.1.6 README.md
dandelion-0.1.5 README.md