Como usar as expectativas do RSpec em irb

Eu gostaria de usar[1,2,3].should include(1) em irb. Eu tentei:

~$ irb
1.9.3p362 :001 > require 'rspec/expectations'
 => true 
1.9.3p362 :002 > include RSpec::Matchers
 => Object 
1.9.3p362 :003 > [1,2,3].should include(1)
TypeError: wrong argument type Fixnum (expected Module)
    from (irb):3:in `include'
    from (irb):3
    from /home/andrey/.rvm/rubies/ruby-1.9.3-p362/bin/irb:16:in `<main>'

Mas isso não funcionaé um caso válido. Como posso usar[1,2,3].should include(1)?

questionAnswers(1)

yourAnswerToTheQuestion