mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/irb/extend-command.rb (IRB::ExtendCommandBundle): pacify
RDoc. a patch from Eric Hodel <drbrain at segment7.net>. [ruby-core:08522] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10707 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1bdd02fb47
commit
2f34ebef5a
3 changed files with 12 additions and 6 deletions
|
@ -1,3 +1,9 @@
|
|||
Tue Aug 8 23:49:06 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* lib/irb/extend-command.rb (IRB::ExtendCommandBundle): pacify
|
||||
RDoc. a patch from Eric Hodel <drbrain at segment7.net>.
|
||||
[ruby-core:08522]
|
||||
|
||||
Tue Aug 8 11:32:54 2006 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* Makefile.in, common.mk, configure.in: fix for platforms without
|
||||
|
|
2
README
2
README
|
@ -62,7 +62,7 @@ This is what you need to do to compile and install Ruby:
|
|||
|
||||
2. Run ./configure, which will generate config.h and Makefile.
|
||||
|
||||
3. Edit defines.h if you need. Probably this step will not need.
|
||||
3. Edit defines.h if you need. Usually this step will not be needed.
|
||||
|
||||
4. Remove comment mark(#) before the module names from ext/Setup (or
|
||||
add module names if not present), if you want to link modules
|
||||
|
|
|
@ -106,14 +106,14 @@ module IRB
|
|||
|
||||
]
|
||||
|
||||
def EXCB.install_extend_commands
|
||||
def self.install_extend_commands
|
||||
for args in @EXTEND_COMMANDS
|
||||
def_extend_command(*args)
|
||||
end
|
||||
end
|
||||
|
||||
# aliases = [commans_alias, flag], ...
|
||||
def EXCB.def_extend_command(cmd_name, cmd_class, load_file = nil, *aliases)
|
||||
def self.def_extend_command(cmd_name, cmd_class, load_file = nil, *aliases)
|
||||
case cmd_class
|
||||
when Symbol
|
||||
cmd_class = cmd_class.id2name
|
||||
|
@ -172,7 +172,7 @@ module IRB
|
|||
"irb_" + method_name + "_org"
|
||||
end
|
||||
|
||||
def EXCB.extend_object(obj)
|
||||
def self.extend_object(obj)
|
||||
unless (class<<obj;ancestors;end).include?(EXCB)
|
||||
super
|
||||
for ali, com, flg in @ALIASES
|
||||
|
@ -196,13 +196,13 @@ module IRB
|
|||
[:save_history=, "irb/ext/save-history.rb"],
|
||||
]
|
||||
|
||||
def CE.install_extend_commands
|
||||
def self.install_extend_commands
|
||||
for args in @EXTEND_COMMANDS
|
||||
def_extend_command(*args)
|
||||
end
|
||||
end
|
||||
|
||||
def CE.def_extend_command(cmd_name, load_file, *aliases)
|
||||
def self.def_extend_command(cmd_name, load_file, *aliases)
|
||||
Context.module_eval %[
|
||||
def #{cmd_name}(*opts, &b)
|
||||
Context.module_eval {remove_method(:#{cmd_name})}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue