Skip to content

Commit

Permalink
Merge pull request #8 from jacebrowning/release/v0.1
Browse files Browse the repository at this point in the history
Release v0.1
  • Loading branch information
jacebrowning committed Feb 24, 2015
2 parents 89c4752 + 0fc0b5a commit 989b433
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

0.0.0 (2013/10/09)
------------------
0.1 (2014/02/24)
----------------

- <Change the version, date, and this text.>
- Initial release.
36 changes: 31 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,44 @@ $ cd gdm
$ python3 setup.py install
```

Setup
-----

Create a GDM configuration file in the root of your working tree:

```yaml
location: .gdm
sources:
- repo: https://github.com/kstenerud/iOS-Universal-Framework
dir: framework
rev: Mk5-end-of-life
link: Frameworks/iOS-Universal-Framework
- repo: https://github.com/jonreid/XcodeCoverage
dir: coverage
rev: master
link: Tools/XcodeCoverage
```
Ignore the source location:
```
$ echo .gdm >> .gitignore
```

Basic Usage
===========

After installation:
Get the specified versions of all dependencies:

```
$ python3
>>> import gdm
>>> gdm.__version__
$ gdm install
```

GDM doesn't do anything yet.
Remove all installed dependencies:

```
$ gdm uninstall
```

For Contributors
================
Expand Down
2 changes: 1 addition & 1 deletion gdm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys

__project__ = 'GDM'
__version__ = '0.1dev'
__version__ = '0.1'

CLI = 'gdm'
VERSION = __project__ + '-' + __version__
Expand Down

0 comments on commit 989b433

Please sign in to comment.