RainbowHash
This simple gem gives you the ability to print out a structure of arrays and hashes in a pretty way straight from your terminal.
Installation
Install it by running the following command from your terminal:
$ gem install rainbow_hash
If you use Rbenv to manage your Ruby versions, you may have to run:
$ rbenv rehash
Usage
From your terminal, run the rainbow command followed by your data structure surrounded by quotation marks.
For example, if you wanted to view the following hash from your terminal:
[TEST, {a: 1, [2, 3, 4]}]
you would run:
rainbow "[TEST, {a: 1, [2, 3, 4, {cow: 'moo'}]}]"
And watch the results!
Contributing
- Fork it ( https://github.com/[my-github-username]/rainbow_hash/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request