|
This post originated from an RSS feed registered with Ruby Buzz
by Jan Lelis.
|
Original Post: pws: The ruby-powered command-line password manager
Feed Title: rbJ*_*L.net
Feed URL: http://feeds.feedburner.com/rbJL
Feed Description: Hi, I am a fan of Ruby and like to explore it and the world around ;).
So I started this blog, where I am publishing code snippets, tutorials for beginners as well as general thoughts about Ruby, the web or programming in general.
|
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Jan Lelis
Latest Posts From rbJ*_*L.net
|
|
- stores your passwords in a file on your disk
- encrypts the file with a master password
- is designed for every-day-use
- is written in 234 lines of understandable Ruby code… Read it!
- is tested with 222 Cucumber steps
This announcement is actually a follow-up of my previous tutorial on how to build a password safe in ruby. Unfortunately, I was not using it and did not update it for quite a while, sorry for that.. But I finally managed to refactor it, so now it comes with specs, colors, new features and thousands of other tweaks and improvements :D
Impression / Usage

Install
Using a Ruby 1.9, do
$ gem install pws
Github: github.com/janlelis/pws
Usage tips
I’ve got the following lines in my ~./bashrc
export PWS="$HOME/.safe/pws"
alias pw='pws'
The first line changes the password file location. In that ~/.safe folder, I actually use git to backup some of my pws files.
The second line allows a handy syntax for getting a password:
$ pw for github
CC-BY (DE)
Read: pws: The ruby-powered command-line password manager