Module: IRB::ExtendCommandBundle
- Defined in:
- lib/irb/extend-command.rb,
lib/irb/ext/use-loader.rb
Overview
Installs the default irb extensions command bundle.
Constant Summary collapse
- EXCB =
:nodoc:
ExtendCommandBundle
- NO_OVERRIDE =
See #install_alias_method.
0
- OVERRIDE_PRIVATE_ONLY =
See #install_alias_method.
0x01
- OVERRIDE_ALL =
See #install_alias_method.
0x02
Class Method Summary collapse
-
.def_extend_command(cmd_name, cmd_class, load_file = nil, *aliases) ⇒ Object
Evaluate the given
cmd_name
on the givencmd_class
Class. -
.extend_object(obj) ⇒ Object
Installs alias methods for the default irb commands on the given object using #install_alias_method.
-
.install_extend_commands ⇒ Object
Installs the default irb commands:.
-
.irb_original_method_name(method_name) ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#install_alias_method(to, from, override = NO_OVERRIDE) ⇒ Object
Installs alias methods for the default irb commands, see ::install_extend_commands.
-
#irb_context ⇒ Object
Displays current configuration.
-
#irb_exit(ret = 0) ⇒ Object
Quits the current irb context.
-
#irb_load(*opts, &b) ⇒ Object
Loads the given file similarly to Kernel#load, see IrbLoader#irb_load.
-
#irb_require(*opts, &b) ⇒ Object
Loads the given file similarly to Kernel#require.
Class Method Details
.def_extend_command(cmd_name, cmd_class, load_file = nil, *aliases) ⇒ Object
Evaluate the given cmd_name
on the given cmd_class
Class.
Will also define any given aliases
for the method.
The optional load_file
parameter will be required within the method definition.
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/irb/extend-command.rb', line 161 def self.def_extend_command(cmd_name, cmd_class, load_file = nil, *aliases) case cmd_class when Symbol cmd_class = cmd_class.id2name when String when Class cmd_class = cmd_class.name end if load_file line = __LINE__; eval %[ def #{cmd_name}(*opts, &b) require "#{load_file}" arity = ExtendCommand::#{cmd_class}.instance_method(:execute).arity args = (1..(arity < 0 ? ~arity : arity)).map {|i| "arg" + i.to_s } args << "*opts" if arity < 0 args << "&block" args = args.join(", ") line = __LINE__; eval %[ unless singleton_class.class_variable_defined?(:@@#{cmd_name}_) singleton_class.class_variable_set(:@@#{cmd_name}_, true) def self.#{cmd_name}_(\#{args}) ExtendCommand::#{cmd_class}.execute(irb_context, \#{args}) end end ], nil, __FILE__, line __send__ :#{cmd_name}_, *opts, &b end ], nil, __FILE__, line else line = __LINE__; eval %[ def #{cmd_name}(*opts, &b) ExtendCommand::#{cmd_class}.execute(irb_context, *opts, &b) end ], nil, __FILE__, line end for ali, flag in aliases @ALIASES.push [ali, cmd_name, flag] end end |
.extend_object(obj) ⇒ Object
Installs alias methods for the default irb commands on the given object using #install_alias_method.
231 232 233 234 235 236 237 238 |
# File 'lib/irb/extend-command.rb', line 231 def self.extend_object(obj) unless (class << obj; ancestors; end).include?(EXCB) super for ali, com, flg in @ALIASES obj.install_alias_method(ali, com, flg) end end end |
.install_extend_commands ⇒ Object
Installs the default irb commands:
irb_current_working_workspace
-
Context#main
irb_change_workspace
-
Context#change_workspace
irb_workspaces
-
Context#workspaces
irb_push_workspace
-
Context#push_workspace
irb_pop_workspace
-
Context#pop_workspace
irb_load
-
#irb_load
irb_require
-
#irb_require
irb_source
-
IrbLoader#source_file
irb
-
IRB.irb
irb_jobs
-
JobManager
irb_fg
-
JobManager#switch
irb_kill
-
JobManager#kill
irb_help
-
IRB@Command+line+options
149 150 151 152 153 |
# File 'lib/irb/extend-command.rb', line 149 def self.install_extend_commands for args in @EXTEND_COMMANDS def_extend_command(*args) end end |
.irb_original_method_name(method_name) ⇒ Object
:nodoc:
225 226 227 |
# File 'lib/irb/extend-command.rb', line 225 def self.irb_original_method_name(method_name) # :nodoc: "irb_" + method_name + "_org" end |
Instance Method Details
#install_alias_method(to, from, override = NO_OVERRIDE) ⇒ Object
Installs alias methods for the default irb commands, see ::install_extend_commands.
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'lib/irb/extend-command.rb', line 205 def install_alias_method(to, from, override = NO_OVERRIDE) to = to.id2name unless to.kind_of?(String) from = from.id2name unless from.kind_of?(String) if override == OVERRIDE_ALL or (override == OVERRIDE_PRIVATE_ONLY) && !respond_to?(to) or (override == NO_OVERRIDE) && !respond_to?(to, true) target = self (class << self; self; end).instance_eval{ if target.respond_to?(to, true) && !target.respond_to?(EXCB.irb_original_method_name(to), true) alias_method(EXCB.irb_original_method_name(to), to) end alias_method to, from } else print "irb: warn: can't alias #{to} from #{from}.\n" end end |
#irb_context ⇒ Object
Displays current configuration.
Modifying the configuration is achieved by sending a message to IRB.conf.
36 37 38 |
# File 'lib/irb/extend-command.rb', line 36 def irb_context IRB.CurrentContext end |
#irb_exit(ret = 0) ⇒ Object
Quits the current irb context
ret
is the optional signal or message to send to Context#exit
Same as IRB.CurrentContext.exit
.
29 30 31 |
# File 'lib/irb/extend-command.rb', line 29 def irb_exit(ret = 0) irb_context.exit(ret) end |
#irb_load(*opts, &b) ⇒ Object
Loads the given file similarly to Kernel#load, see IrbLoader#irb_load
25 26 27 |
# File 'lib/irb/ext/use-loader.rb', line 25 def irb_load(*opts, &b) ExtendCommand::Load.execute(irb_context, *opts, &b) end |
#irb_require(*opts, &b) ⇒ Object
Loads the given file similarly to Kernel#require
30 31 32 |
# File 'lib/irb/ext/use-loader.rb', line 30 def irb_require(*opts, &b) ExtendCommand::Require.execute(irb_context, *opts, &b) end |