Thank you Jim. @ruby -I C:/work/opensource/ruby/buildr/lib "C:/work/opensource/ruby/buildr/bin/buildr" %*
Is what I need. On 7/11/07, Jim Weirich <[EMAIL PROTECTED]> wrote:
On Jul 11, 2007, at 10:06 AM, Anatol Pomozov wrote: > After adding to buildr.cmd -I parameter > > like this > @ruby -I C:/work/opensource/ruby/buildr/lib "c:/PROGRA~1/ruby/bin/ > buildr" %* > > I have an exception > > c:/PROGRA~1/ruby/bin/buildr:16:in `load': no such file to load -- > buildr (LoadError) > from c:/PROGRA~1/ruby/bin/buildr:16 > > bin/buildr is a standard > > #!c:/PROGRA~1/ruby/bin/ruby > # > # This file was generated by RubyGems. > # > # The application 'buildr' is installed as part of a gem, and > # this file is here to facilitate running it. > # > > require 'rubygems' > version = "> 0" > if ARGV.first =~ /^_(.*)_$/ and Gem::Version.correct? $1 then > version = $1 > ARGV.shift > end > gem 'buildr', version > load 'buildr' # <========== EXCEPTION GOES FROM HERE > > > What does it mean?? It means that it is not finding 'buildr' anywhere in the load path. From your earlier post, I got the impression that you did not want to run the gem installed version of buildr. If this is the case, then don't try to execute the gem-created stub file (which explicitly loads the gem installed version of buildr into the load path). Instead, execute your main buildr application script directly. Guessing from your example, that would be something like: @ruby -I C:/work/opensource/ruby/buildr/lib "C:/work/opensource/ ruby/buildr/bin/buildr" %* Does that help? -- -- Jim Weirich -- [EMAIL PROTECTED] _______________________________________________ Rubygems-developers mailing list [email protected] http://rubyforge.org/mailman/listinfo/rubygems-developers
-- anatol
_______________________________________________ Rubygems-developers mailing list [email protected] http://rubyforge.org/mailman/listinfo/rubygems-developers
