Class: IRB::ExtendCommand::Nop

Inherits:
Object
  • Object
show all
Defined in:
lib/irb/cmd/nop.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(conf) ⇒ Nop

Returns a new instance of Nop.



23
24
25
# File 'lib/irb/cmd/nop.rb', line 23

def initialize(conf)
	@irb_context = conf
end

Instance Attribute Details

#irb_contextObject (readonly)

Returns the value of attribute irb_context



27
28
29
# File 'lib/irb/cmd/nop.rb', line 27

def irb_context
  @irb_context
end

Class Method Details

.execute(conf, *opts) ⇒ Object



18
19
20
21
# File 'lib/irb/cmd/nop.rb', line 18

def self.execute(conf, *opts)
	command = new(conf)
	command.execute(*opts)
end

Instance Method Details

#execute(*opts) ⇒ Object



33
34
35
# File 'lib/irb/cmd/nop.rb', line 33

def execute(*opts)
	#nop
end

#irbObject



29
30
31
# File 'lib/irb/cmd/nop.rb', line 29

def irb
	@irb_context.irb
end