InsteadOf
An utterly simple gem to replace specific values with other values.
Installation
Add this line to your application's Gemfile:
gem 'instead_of'
And then execute:
$ bundle
Or install it yourself as:
$ gem install instead_of
Usage
require 'instead_of'
(2 + 2).but("abc".instead_of(3) # 4 is unchanged
(2 + 2).but(4.instead_of(3), 5.instead_of(4)) # 4 replaced with 5
Contributing
- Fork it
- 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 new Pull Request