asrt
Introduction
This gem simply gives you asrt so
you can do assertions like this:
def funny(input)
asrt input.is_a?(String), 'Me only eat strings.'
input.strip + ' is funny'
endWhy use asrt rather than assert? Well, it's short and you may
like to use some other assert stuff for your unit tests.
Installation
gem install asrtIn your Gemfile may want to have gem 'asrt'.
Dependencies
None.