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