summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--lib/irb/init.rb13
2 files changed, 14 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index bc6cf96bbb..61df6fec23 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Aug 29 18:58:05 2005 Keiju Ishitsuka <keiju@ruby-lang.org>
+ * lib/irb/init.rb: make IRB -I option that is same befavior for ruby.
+ [ruby-dev:26872]
+
+ * lib/irb/locale.rb: support to print help message when OS locale is
+ ja_JP.utf-8. [ruby-dev:26872]
+
Mon Aug 29 01:43:05 2005 Tanaka Akira <akr@m17n.org>
* lib/pathname.rb (Pathname#descend): new method.
@@ -20,6 +27,7 @@ Sat Aug 27 20:13:31 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* ext/curses/view.rb: String =~ String is deprecated.
+>>>>>>> 1.4509
Thu Aug 25 15:48:58 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* ext/win32ole/win32ole.c: supress warnings. (win32)
diff --git a/lib/irb/init.rb b/lib/irb/init.rb
index 00b7f1bd6e..c53d5adf31 100644
--- a/lib/irb/init.rb
+++ b/lib/irb/init.rb
@@ -121,8 +121,7 @@ module IRB
@CONF[:LC_MESSAGES].load("irb/error.rb")
end
- FEATUER_IOPT_CHANGE_VERSION = "1.9.0"
- FEATUER_IOPT_CHANGE_DATE = "2005-04-22"
+ FEATURE_IOPT_CHANGE_VERSION = "1.9.0"
# option analyzing
def IRB.parse_opts
@@ -140,7 +139,7 @@ module IRB
@CONF[:LOAD_MODULES].push opt if opt
when /^-I(.+)?/
opt = $1 || ARGV.shift
- load_path.push opt if opt
+ load_path.concat(opt.split(File::PATH_SEPARATOR)) if opt
when /^-K(.)/
$KCODE = $1
when "--inspect"
@@ -193,10 +192,10 @@ module IRB
break
end
end
- if RUBY_VERSION > FEATUER_IOPT_CHANGE_VERSION ||
- RUBY_VERSION == FEATUER_IOPT_CHANGE_VERSION &&
- RUBY_RELEASE_DATE >= FEATUER_IOPT_CHANGE_DATE
- load_path = load_path.collect{|p| File.expand_path(p)}
+ if RUBY_VERSION >= FEATURE_IOPT_CHANGE_VERSION
+ load_path.collect do |path|
+ /\A\.\// =~ path ? path : File.expand_path(path)
+ end
end
$LOAD_PATH.unshift(*load_path)
end