Toolman
Toolman is created by some tools that I often use when I coding.
Following is what can toolman do.
- Easy print string with color.
- A cute and simple loading bar on command line.
- Print message with a spacial format that you can debug easily.
Installation
RubyGem
Add this line to your application's Gemfile:
gem 'toolman'
And then execute:
$ bundle
Or install it yourself as:
$ gem install toolman
Clone from github
Step1: Clone this gem to your dir
git clone
Step2: Gem build
gem build debugman.gemspec
Step3: Gem install
gem install ./debugman-0.0.1.gem
(0.0.1 is version number and will change)
Usage
Create a instance
man = Toolman.new
man.say "hi"
# => >>>>>>>>>>>>>>>>>Messange>>>>>>>>>>>>>>>>>
# => hi
# => >>>>>>>>>>>>>>>>>Messange>>>>>>>>>>>>>>>>>
Contributing
- Fork it ( https://github.com/[my-github-username]/toolman/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