Dogy
create command line tools
Installation
Add this line to your application's Gemfile:
gem 'dogy'
And then execute:
$ bundle
Or install it yourself as:
$ gem install dogy
Usage
# filename: fib.rb
#!/usr/bin/env ruby
def fib n
return n < 2 ? n : ->{
fib(n - 2) + fib(n - 1)
}.call
end
# require
require 'dogy'
$ ./fib.rb fib 10
55
Contributing
- Fork it ( https://github.com/mocchit/dogy/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