Using, or not using, ruby gems

Hi,
Can someone please tell me whether or not I should still have ‘require
rubygems’ at the top of my Ruby scripts? I seem to recall, years ago,
that I should always have it there. But, now with Ruby 2.x, I’m seeing
some errors pop up with regard to it. Do I still need it?

Thanks,
Peter

Since ruby 1.9 loading of rubygems works automatically, no need for
require "rubygems" anymore.

OK. Thank you very much!