clamp
implements #clamp
on any Comparable
'a'.clamp('b', 'c') # => 'b'
'b'.clamp('a', 'c') # => 'b'
'd'.clamp('a', 'c') # => 'c'
...
Installation
Add this to your application's shard.yml
:
dependencies:
clamp:
github: johnjansen/clamp
Usage
require "clamp"
Contributing
- Fork it ( https://github.com/johnjansen/clamp/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
Contributors
- johnjansen John Jansen - creator, maintainer