You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by vb...@apache.org on 2008/09/23 21:13:18 UTC

svn commit: r698298 - in /incubator/buildr/trunk: buildr buildr.gemspec lib/buildr/core/compile.rb

Author: vborja
Date: Tue Sep 23 12:13:18 2008
New Revision: 698298

URL: http://svn.apache.org/viewvc?rev=698298&view=rev
Log:
Fixed: BUILDR-82: Temporary work around for Net::SSH 2.0.2 attempting to load Pageant DLLs when running on JRuby/Windows.


Added:
    incubator/buildr/trunk/buildr   (with props)
Modified:
    incubator/buildr/trunk/buildr.gemspec
    incubator/buildr/trunk/lib/buildr/core/compile.rb

Added: incubator/buildr/trunk/buildr
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/buildr?rev=698298&view=auto
==============================================================================
--- incubator/buildr/trunk/buildr (added)
+++ incubator/buildr/trunk/buildr Tue Sep 23 12:13:18 2008
@@ -0,0 +1,3 @@
+#!/usr/bin/env sh
+# Run buildr from source, specifically for testing stuff without doing a rake install.
+ruby -Ilib -Iaddon bin/buildr $*

Propchange: incubator/buildr/trunk/buildr
------------------------------------------------------------------------------
    svn:executable = *

Modified: incubator/buildr/trunk/buildr.gemspec
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/buildr.gemspec?rev=698298&r1=698297&r2=698298&view=diff
==============================================================================
--- incubator/buildr/trunk/buildr.gemspec (original)
+++ incubator/buildr/trunk/buildr.gemspec Tue Sep 23 12:13:18 2008
@@ -56,4 +56,4 @@
   spec.add_dependency 'archive-tar-minitar',  '0.5.2'
   spec.add_dependency 'jruby-openssl',        '0.2'   if spec.platform.to_s == 'java'
   spec.add_dependency 'ci_reporter',          '1.5.1' if spec.platform.to_s == 'java'
-end
\ No newline at end of file
+end

Modified: incubator/buildr/trunk/lib/buildr/core/compile.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/lib/buildr/core/compile.rb?rev=698298&r1=698297&r2=698298&view=diff
==============================================================================
--- incubator/buildr/trunk/lib/buildr/core/compile.rb (original)
+++ incubator/buildr/trunk/lib/buildr/core/compile.rb Tue Sep 23 12:13:18 2008
@@ -593,4 +593,4 @@
 
 class Buildr::Project
   include Buildr::Compile
-end
\ No newline at end of file
+end