mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6225a88382
commit
67c5b057e6
2 changed files with 66 additions and 0 deletions
57
runruby.rb
Executable file
57
runruby.rb
Executable file
|
@ -0,0 +1,57 @@
|
||||||
|
#!./miniruby
|
||||||
|
|
||||||
|
while arg = ARGV[0]
|
||||||
|
break ARGV.shift if arg == '--'
|
||||||
|
/\A--([-\w]+)(?:=(.*))?\z/ =~ arg or break
|
||||||
|
arg, value = $1, $2
|
||||||
|
re = Regexp.new('\A'+arg.gsub(/\w+\b/, '\&\\w*')+'\z', "i")
|
||||||
|
case
|
||||||
|
when re =~ "srcdir"
|
||||||
|
srcdir = value
|
||||||
|
when re =~ "archdir"
|
||||||
|
archdir = value
|
||||||
|
when re =~ "extout"
|
||||||
|
extout = value
|
||||||
|
else
|
||||||
|
break
|
||||||
|
end
|
||||||
|
ARGV.shift
|
||||||
|
end
|
||||||
|
|
||||||
|
require 'rbconfig'
|
||||||
|
config = Config::CONFIG
|
||||||
|
|
||||||
|
srcdir ||= File.dirname(__FILE__)
|
||||||
|
archdir ||= '.'
|
||||||
|
|
||||||
|
ruby = File.join(archdir, config["RUBY_INSTALL_NAME"]+config['EXEEXT'])
|
||||||
|
unless File.exist?(ruby)
|
||||||
|
abort "#{ruby} is not found.\nTry `make' first, then `make test', please.\n"
|
||||||
|
end
|
||||||
|
|
||||||
|
abs_archdir = File.expand_path(archdir)
|
||||||
|
libs = [abs_archdir, File.expand_path("lib", srcdir)]
|
||||||
|
if extout
|
||||||
|
abs_extout = File.expand_path(extout)
|
||||||
|
libs << abs_extout << File.expand_path(RUBY_PLATFORM, abs_extout)
|
||||||
|
end
|
||||||
|
config["bindir"] = abs_archdir
|
||||||
|
ENV["RUBY"] = File.expand_path(ruby)
|
||||||
|
ENV["PATH"] = [abs_archdir, ENV["PATH"]].compact.join(File::PATH_SEPARATOR)
|
||||||
|
|
||||||
|
if e = ENV["RUBYLIB"]
|
||||||
|
libs |= e.split(File::PATH_SEPARATOR)
|
||||||
|
end
|
||||||
|
ENV["RUBYLIB"] = $:.replace(libs).join(File::PATH_SEPARATOR)
|
||||||
|
|
||||||
|
libruby_so = File.join(abs_archdir, config['LIBRUBY_SO'])
|
||||||
|
if File.file?(libruby_so)
|
||||||
|
if e = config['LIBPATHENV'] and !e.empty?
|
||||||
|
ENV[e] = [abs_archdir, ENV[e]].compact.join(File::PATH_SEPARATOR)
|
||||||
|
end
|
||||||
|
if /linux/ =~ RUBY_PLATFORM
|
||||||
|
ENV["LD_PRELOAD"] = [libruby_so, ENV["LD_PRELOAD"]].compact.join(' ')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
exec ruby, *ARGV
|
9
test/rss/test_version.rb
Normal file
9
test/rss/test_version.rb
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
require "rss-testcase"
|
||||||
|
|
||||||
|
module RSS
|
||||||
|
class TestVersion < TestCase
|
||||||
|
def test_version
|
||||||
|
assert_equal("0.1.2", ::RSS::VERSION)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Add table
Add a link
Reference in a new issue