twik-ruby/README.md

56 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2014-10-20 10:47:22 +02:00
# Twik
2014-10-21 09:33:42 +02:00
This gem is a ruby version of [Twik](http://gustavomondron.github.io/twik/) for Android.
It is an easy to use password generator and manager.
2014-10-20 10:47:22 +02:00
## Installation
2014-10-21 09:33:42 +02:00
Install it yourself as:
$ gem install twik
## Usage
### CLI
2014-10-20 10:47:22 +02:00
2014-10-21 09:33:42 +02:00
```
Usage: twik [options] tag
Specific options:
-l, --length LENGTH length of generated password (4-26). Default: 16
-p, --profile PROFILE profile to use. Default: 'default'
-t, --type TYPE type of password:
alphanumeric_and_special_chars, alphanumeric, numeric
Default: alphanumeric_and_special_chars
Common options:
-h, --help Show this message
--version Show version
2014-10-20 10:47:22 +02:00
```
2014-10-21 09:33:42 +02:00
Your profiles and private keys are stored in `~/.config/twik/config.yml`.
2014-10-20 10:47:22 +02:00
2014-10-21 09:33:42 +02:00
### Gem
2014-10-20 10:47:22 +02:00
2014-10-21 09:33:42 +02:00
```ruby
require 'twik'
2014-10-20 10:47:22 +02:00
2014-10-21 09:33:42 +02:00
Twik::TYPE
# => [:alphanumeric_and_special_chars, :alphanumeric, :numeric]
2014-10-20 10:47:22 +02:00
2014-10-21 09:33:42 +02:00
twik = Twik.new('PRIVATE-KEY', length: 16, type: :alphanumeric_and_special_chars)
twik.generate('tag', 'masterkey')
# => "ucf+p5TxMb0f/DE1"
2014-10-20 10:47:22 +02:00
2014-10-21 09:33:42 +02:00
twik.generate('tag', 'masterkey', length: 8, type: :numeric)
# => "91454552"
```
2014-10-20 10:47:22 +02:00
## Contributing
2014-10-21 09:33:42 +02:00
1. Fork it ( https://github.com/gdott9/twik/fork )
2014-10-20 10:47:22 +02:00
2. Create your feature branch (`git checkout -b my-new-feature`)
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