Fredify
A small library inspired by Fred Flintstone.
Installation
Add this line to your application's Gemfile:
gem 'fredify'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fredify
Usage
# Plain old ruby code:
[1, 2, 3].each { |n| puts n }
# Fredified:
require "fredify"
Fred.yabba_dabba do
[1, 2, 3].each { |n| puts n }
end
# Lose the namespace:
require "fredify"
include Fred
yabba_dabba do
[1, 2, 3].each { |n| puts n }
end
Contributing
- Fork it ( https://github.com/imtayadeway/fredify/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