1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/webrick/utils.rb (TestWEBrick::RubyBin): test CGI does not need

to load rubygems.  if it activated, ruby raises LoadError about
  rbconfig.rb.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30611 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2011-01-20 02:41:09 +00:00
parent 74b0a7a06f
commit a9f76259ce
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
Thu Jan 20 11:39:41 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* test/webrick/utils.rb (TestWEBrick::RubyBin): test CGI does not need
to load rubygems. if it activated, ruby raises LoadError about
rbconfig.rb.
Thu Jan 20 09:19:42 2011 Aaron Patterson <aaron@tenderlovemaking.com>
* ext/psych/lib/psych/visitors/json_tree.rb: Fix JSON emit for

View file

@ -14,6 +14,7 @@ module TestWEBrick
end
RubyBin = "\"#{EnvUtil.rubybin}\""
RubyBin << " --disable-gems"
RubyBin << " \"-I#{File.expand_path("../..", File.dirname(__FILE__))}/lib\""
RubyBin << " \"-I#{File.dirname(EnvUtil.rubybin)}/.ext/common\""
RubyBin << " \"-I#{File.dirname(EnvUtil.rubybin)}/.ext/#{RUBY_PLATFORM}\""