Skip to content

Commit

Permalink
rename docli to doit
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanl committed Jul 12, 2015
1 parent a35ae39 commit 7d47b7b
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 32 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ before_install:
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
install:
- "go get -d -v -t ./..."
- "go build github.com/bryanl/doit/cmd/docli"
- "go build github.com/bryanl/doit/cmd/doit"
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
deploy:
Expand All @@ -19,7 +19,7 @@ OXYEWONWZL+ufBfbTQPb4Ewk9oM965WR0G9Gbhbaks7sEELj35zxTD1pEOAiIw22Lk5fX0Md74CCa+LP
PyQelz7cTmp3AKa4sU78UtSio5qUuYPHF3nPVJDhtg1tK/tQplF9iCP0DrQlah8LGMfGGVvyC/JBm98euegXtld0/k5HWS0r2tta+TFLh6jwvd7bBMkDdH
Ml9yZvAz1k4z8Phy8YfUxXDk/NJ0FqLkk9j+6vemJAbBzNVLvwcYRaxogruG4QqEtxiYMtDdMMSEOEXpRB9DLNaItsj+uoam334KsDr30tDye4z6MKMqlT
wBtbwzJ/fk8NzpxDA06P3fSGP2AMLurdky+dVgohnOM/IC3yKMUV+SYvf8PezETk4GaJMND13xRfjh1Yjil3MPxnIIZz5NuxVNUwvzIg="
file: "docli"
file: "doit"
skip_cleanup: true
on:
repo: bryanl/doit
Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to docli
# Contributing to doit

**First:** if you're unsure or afraid of _anything_, just ask
or submit the issue or pull request anyways. You won't be yelled at for
Expand All @@ -22,14 +22,14 @@ it raises the chances we can quickly merge or address your contributions.
of the *entire* generated crash log for us to look at. Double check
no sensitive items were in the log.

* Respond as promptly as possible to any questions made by the _docli_
* Respond as promptly as possible to any questions made by the _doit_
team to your issue. Stale issues will be closed.

### Issue Lifecycle

1. The issue is reported.

2. The issue is verified and categorized by a _docli_ collaborator.
2. The issue is verified and categorized by a _doit_ collaborator.
Categorization is done via tags. For example, bugs are marked as "bugs".

3. Unless it is critical, the issue is left for a period of time (sometimes
Expand All @@ -43,7 +43,7 @@ it raises the chances we can quickly merge or address your contributions.
the issue tracker clean. The issue is still indexed and available for
future viewers, or can be re-opened if necessary.

## Setting up Go to work on docli
## Setting up Go to work on doit

If you have never worked with Go before, you will have to complete the
following steps in order to be able to compile and test doit.
Expand All @@ -59,7 +59,7 @@ following steps in order to be able to compile and test doit.
export PATH=$PATH:$GOPATH/bin
```
1. Make your changes to the docli source, being sure to run the basic
1. Make your changes to the doit source, being sure to run the basic
tests.
1. If everything works well and the tests pass, run `go fmt` on your code
Expand Down
48 changes: 26 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,39 @@
# DOCLI
# DOIT


![Travis Build Status](https://travis-ci.org/bryanl/doit.svg?branch=master)
[![Coverage Status](https://coveralls.io/repos/bryanl/doit/badge.svg?branch=master)](https://coveralls.io/r/bryanl/doit?branch=master)


DigitalOcean CLI client
[![Coverage Status]
(https://coveralls.io/repos/bryanl/doit/badge.svg?branch=master)]
(https://coveralls.io/r/bryanl/doit?branch=master)

```
NAME:
docli - DigitalOcean API CLI
doit - DigitalOcean Interactive Tool
USAGE:
docli [global options] command [command options] [arguments...]
doit [global options] command [command options] [arguments...]
VERSION:
0.4.0
COMMANDS:
account account commands
action action commands
domain domain commands
droplet droplet commands
droplet-action droplet action commands
image-action image action commands
image image commands
region region commands
size size commands
key ssh key commands
help, h Shows a list of commands or help for one command
account account commands
action action commands
domain domain commands
droplet droplet commands
droplet-action droplet action commands
image-action image action commands
image image commands
key ssh key commands
region region commands
size size commands
ssh SSH to droplet. Provide name or id
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--token DigitalOcean API V2 Token [$DO_TOKEN]
--debug Debug
--help, -h show help
--version, -v print the version
--token DigitalOcean API V2 Token [$DIGITAL_OCEAN_TOKEN]
--debug Debug
--help, -h show help
--version, -v print the version
```
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions cmd/docli/main.go → cmd/doit/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ func init() {

func main() {
app := cli.NewApp()
app.Name = "docli"
app.Usage = "DigitalOcean API CLI"
app.Version = "0.1.0"
app.Name = "doit"
app.Usage = "DigitalOcean Interactive Tool"
app.Version = "0.4.0"
app.Flags = []cli.Flag{
tokenFlag(),
debugFlag(),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7d47b7b

Please sign in to comment.