厳密には、「rspecの標準出力が潰されていたので戻す」です。
spec/spec_helper.rb
config.around(:example) do |example|
$stdout = StringIO.new
example.run
$stdout = STDOUT
end
こうなっているところを
# config.around(:example) do |example|
# $stdout = StringIO.new
# example.run
# $stdout = STDOUT
# end
こうすると標準出力が戻ってきた。