Return-Path: Delivered-To: apmail-incubator-buildr-commits-archive@locus.apache.org Received: (qmail 34367 invoked from network); 2 Oct 2008 01:23:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Oct 2008 01:23:34 -0000 Received: (qmail 22012 invoked by uid 500); 2 Oct 2008 01:23:33 -0000 Delivered-To: apmail-incubator-buildr-commits-archive@incubator.apache.org Received: (qmail 21993 invoked by uid 500); 2 Oct 2008 01:23:33 -0000 Mailing-List: contact buildr-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: buildr-dev@incubator.apache.org Delivered-To: mailing list buildr-commits@incubator.apache.org Received: (qmail 21984 invoked by uid 99); 2 Oct 2008 01:23:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Oct 2008 18:23:33 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Oct 2008 01:22:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 04DA423889F7; Wed, 1 Oct 2008 18:23:14 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r700979 - in /incubator/buildr/trunk: CHANGELOG lib/buildr/core/transports.rb rakelib/rspec.rake Date: Thu, 02 Oct 2008 01:23:13 -0000 To: buildr-commits@incubator.apache.org From: assaf@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081002012314.04DA423889F7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: assaf Date: Wed Oct 1 18:23:13 2008 New Revision: 700979 URL: http://svn.apache.org/viewvc?rev=700979&view=rev Log: Fixed: BUILDR-137 JRuby 1.1.3 and Buildr 1.3.2 don't appear to work (on Windows). Modified: incubator/buildr/trunk/CHANGELOG incubator/buildr/trunk/lib/buildr/core/transports.rb incubator/buildr/trunk/rakelib/rspec.rake Modified: incubator/buildr/trunk/CHANGELOG URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/CHANGELOG?rev=700979&r1=700978&r2=700979&view=diff ============================================================================== --- incubator/buildr/trunk/CHANGELOG (original) +++ incubator/buildr/trunk/CHANGELOG Wed Oct 1 18:23:13 2008 @@ -23,6 +23,8 @@ * Change: BUILDR-153 To customize the SVN tag used by the release task, set Release.tag_name to either the tag value or a proc that takes the version number and return the desired tag. +* Fixed: BUILDR-137 JRuby 1.1.3 and Buildr 1.3.2 don't appear to work + (on Windows). * Fixed: BUILDR-135. Extracted reusable replacement logic into Filter::Mapper * Fixed: BUILDR-129. Modifying a project manifest should not alter it's parent project manifest. Modified: incubator/buildr/trunk/lib/buildr/core/transports.rb URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/lib/buildr/core/transports.rb?rev=700979&r1=700978&r2=700979&view=diff ============================================================================== --- incubator/buildr/trunk/lib/buildr/core/transports.rb (original) +++ incubator/buildr/trunk/lib/buildr/core/transports.rb Wed Oct 1 18:23:13 2008 @@ -18,8 +18,7 @@ require 'net/http' require 'net/https' # PATCH: On Windows, Net::SSH 2.0.2 attempts to load the Pageant DLLs which break on JRuby. -$LOADED_FEATURES.unshift 'net/ssh/authentication/pageant' if RUBY_PLATFORM =~ /java/ -require 'net/ssh' +$LOADED_FEATURES << 'net/ssh/authentication/pageant.rb' if RUBY_PLATFORM =~ /java/ require 'net/sftp' require 'uri' require 'digest/md5' Modified: incubator/buildr/trunk/rakelib/rspec.rake URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/rakelib/rspec.rake?rev=700979&r1=700978&r2=700979&view=diff ============================================================================== --- incubator/buildr/trunk/rakelib/rspec.rake (original) +++ incubator/buildr/trunk/rakelib/rspec.rake Wed Oct 1 18:23:13 2008 @@ -68,7 +68,7 @@ end task 'setup' do - install_gem 'win32console' if Gem.win_platform? # Colors for RSpec, only on Windows platform. + install_gem 'win32console' if windows? && !RUBY_PLATFORM[/java/] # Colors for RSpec, only on Windows platform. end rescue LoadError