acm

A simple account manager for Windows. This is NOT secure, excuse me ;p.

Installation

Install it yourself as:

> gem install acm

Usage

At first, init database:

> acm init

The database file save as &HOMEDRIVE%%HOMEPATH%/Documents/.account, in YAML. Add account:

> acm add [email protected]
(acm) Key? email
(acm) Value? [email protected]
(acm) Key? password
(acm) Value? xxxxxxxx
(acm) Key?                         # Enter to exit.

Then added account to database. List account(s):

> acm list
[email protected]

Show details:

> acm show [email protected]
Account: [email protected]
  email: [email protected]
  password: xxxxxxxx

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake false to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/takatoh/acm.