This is an incompatibility between the newest versions of rubygems (including your version, 1.8.2) and rails 2.3. Theoretically, this might be solved in rails 2.3.12, but that's not out yet. In the meantime, there are four ways to work around this:
(1) The easiest solution: Simply downgrade to an earlier version of rubygems. I know rails 2.3 will run fine under rubygems 1.7.2 (and possibly some point upgrades after that, don't know for sure). You can downgrade with this command: gem update --system 1.7.2. Note that while rails 2.3 will run under this version, you won't be able to do certain other things; freezing rails gems will fail, and I think migrations may fail too. For complete compatibility with rails 2.3, downgrade to rubygems 1.3.7.
(2) The hardest solution: Upgrade your app to rails 3.
(3) The compromising solution: I haven't tested this personally, but I hear that rails 2.3 with bundler is compatible with the latest rubygems. If you're interested in this solution, see http://gembundler.com/rails23.html for getting bundler to work under rails 2.3.
(4) The ugliest solution: I haven't tested this ether, but you can patch your vendored rails to implement the workaround for this that is supposedly coming in rails 2.3.12. This is really a last resort though -- I'd only do this if for some reason you need the latest version of rubygems installed, can't upgrade your app to rails 3, and don't want to use bundler.