From 333a3187bd1d65d5d367776b95d1164fa42d3ab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=A4fer?= Date: Fri, 20 May 2011 00:04:04 +0200 Subject: [PATCH] Work around a deprecation in rubygems 1.6+. #322 --- extra/svn/reposman.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/extra/svn/reposman.rb b/extra/svn/reposman.rb index c9b9b0f5..4bfd10bd 100755 --- a/extra/svn/reposman.rb +++ b/extra/svn/reposman.rb @@ -66,6 +66,10 @@ require 'rdoc/usage' require 'find' require 'etc' +# working around deprecation in RubyGems 1.6 +# needed for rails <2.3.9 only, don't merge to unstable! +require 'thread' + Version = "1.3" SUPPORTED_SCM = %w( Subversion Darcs Mercurial Bazaar Git Filesystem )