Sha256: 3b065d231c1e0406782253b0086a3fbf749a9a0243eb4bf66d5d4dc986bbc233

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 KB

Contents

# koodmeeter [![Build Status](http://img.shields.io/travis/ain/koodmeeter.svg)](https://travis-ci.org/ain/koodmeeter)

koodmeeter (codemeter) is a password strength score tool.

## Usage

``` ruby
# Returns number representing password strength score:
#   0 - lowest
#   5 - highest
Koodmeeter.check('mypassword')
```

Optionally, minimum chars option can be used, affecting score:

``` ruby
# Returns 0, since "mypassword" is less than 12 chars
Koodmeeter.check('mypassword', 12)
```

## Contributing

### Bug reports, suggestions

- File all your issues, feature requests [here](https://github.com/ain/koodmeeter/issues)
- If filing a bug report, follow the convention of [How to report a bug?](https://github.com/interactive-pioneers/conventions/blob/master/Bugtracking.md#how-to-report-a-bug)
- __If you're a developer, write a failing test instead of a bug report__ and send a Pull Request

### Code

1. Fork it ( https://github.com/[my-github-username]/koodmeeter/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Develop your feature by concepts of [TDD](http://en.wikipedia.org/wiki/Test-driven_development). Run `guard` in parallel to automatically run your tests
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request


## License

Copyright © 2015 Ain Tohvri. Licensed under [GPLv3](LICENSE).

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
koodmeeter-0.0.2 README.md