A small library inspired by Fred Flintstone.
Add this line to your application's Gemfile:
gem 'fredify'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fredify
# 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
- 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