I'd like to do something like the following:
require 'rspec-expectations'
"bat".length.should eq(3)
# => NoMethodError: undefined method `eq' for main:Object
Is something like this possible? How would I need to change it? Would I need to require 'rspec-expectations'
?