Skip to content

Commit

Permalink
Simplify go get installation by committing all dependencies (#13)
Browse files Browse the repository at this point in the history
* adding terminal-parrot dependencies
- all dependencies now contained in go's canonical `vendor` directory
- dependencies managed via glide
- allows for super easy installation via `go install`

* simplifying installation instructions for go get on README
  • Loading branch information
dencold authored and jmhobbs committed Jan 11, 2017
1 parent 424e332 commit 22c9bde
Show file tree
Hide file tree
Showing 39 changed files with 5,596 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -6,8 +6,10 @@

Either grab a build on the [releases page](https://github.com/jmhobbs/terminal-parrot/releases) or clone and run...

go get -u github.com/nsf/termbox-go
go build -o parrot parrot.go draw.go data.go
```bash
$ go get -u github.com/jmhobbs/terminal-parrot
$ terminal-parrot
```

### Homebrew

Expand Down
8 changes: 8 additions & 0 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions glide.yaml
@@ -0,0 +1,3 @@
package: github.com/dencold/terminal-parrot
import:
- package: github.com/nsf/termbox-go
8 changes: 8 additions & 0 deletions vendor/github.com/mattn/go-runewidth/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions vendor/github.com/mattn/go-runewidth/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions vendor/github.com/mattn/go-runewidth/README.mkd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 22c9bde

Please sign in to comment.