Skip to content

Commit

Permalink
Merge branch 'release/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Nov 24, 2015
2 parents 78af286 + b87c321 commit 9b99281
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ after_failure:
- cat ./target/test/report.xml

after_script:
- $HOME/gopath/bin/goveralls -covermode=count -coverprofile=target/report/coverage.out -service=travis-ci
- if [ "$TRAVIS_GO_VERSION" = "1.5" ]; then $HOME/gopath/bin/goveralls -covermode=count -coverprofile=target/report/coverage.out -service=travis-ci; fi;
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

Command-line Random Password Generator.

This is an example of GO language project using a Makefile that integrates targets for common tasks, including RPM and DEB packaging.
This is an example of GO language project using a Makefile that integrates targets for common QA tasks and packaging, including RPM and Debian.

## Getting started

Expand Down Expand Up @@ -51,12 +51,12 @@ Please check all the available options using `make help`.
## Usage

```bash
rndpwd [flags]
rndpwd [flags]

where flags can be:
-c, --charset="!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_abcdefghijklmnopqrstuvwxyz{|}~": String of valid characters for a password
-l, --length=16: Password length (number of characters)
-n, --number=10: Number of passwords to generate
Flags:
-c, --charset="!#.0123456789@ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz": Characters to use to generate a password
-l, --length=16: Lenght of each password (number of characters or bytes)
-q, --quantity=1: Number of passwords to generate
```

## Examples
Expand All @@ -65,12 +65,12 @@ Once the application has being compiled with `make build`, it can be quickly tes

Generate 10 passwords with 32 characters:
```bash
target/usr/bin/rndpwd --number=10 --length=32
target/usr/bin/rndpwd --quantity=10 --length=32
```

Generate 10 passwords with 8 characters using only numbers:
```bash
target/usr/bin/rndpwd --number=10 --length=8 --charset="0123456789"
target/usr/bin/rndpwd --quantity=10 --length=8 --charset="0123456789"
```

## Developer(s) Contact
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.2

0 comments on commit 9b99281

Please sign in to comment.