[![Build Status](https://travis-ci.org/kodnin/namna.svg?branch=master)](https://travis-ci.org/kodnin/namna) # Namna Namna is a simple formatted name generator for the command line written in Ruby. ## Installation Add this line to your application's Gemfile: ```ruby gem 'namna' ``` And then execute: $ bundle Or install it yourself as: $ gem install namna ## Usage Generate a name by invoking the ```namna``` command with a format argument. For example: $ namna 'a?*#z' => adebz results in a name of five characters starting with an 'a', followed by a random character (?), a vowel (*), a consonant (#) and ending with a 'z'. ## Contributing 1. Fork it ( https://github.com/kodnin/namna/fork ) 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