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.



49
50
51
# File 'lib/irb/cmd/nop.rb', line 49

def initialize(conf)
  @irb_context = conf
end

Instance Attribute Details

#irb_contextObject (readonly)

Returns the value of attribute irb_context.



53
54
55
# File 'lib/irb/cmd/nop.rb', line 53

def irb_context
  @irb_context
end

Class Method Details

.category(category = nil) ⇒ Object



15
16
17
18
# File 'lib/irb/cmd/nop.rb', line 15

def category(category = nil)
  @category = category if category
  @category
end

.description(description = nil) ⇒ Object



20
21
22
23
# File 'lib/irb/cmd/nop.rb', line 20

def description(description = nil)
  @description = description if description
  @description
end

.execute(conf, *opts, &block) ⇒ Object



34
35
36
37
38
39
# File 'lib/irb/cmd/nop.rb', line 34

def self.execute(conf, *opts, **kwargs, &block)
  command = new(conf)
  command.execute(*opts, **kwargs, &block)
rescue CommandArgumentError => e
  puts e.message
end

Instance Method Details

#execute(*opts) ⇒ Object



59
60
61
# File 'lib/irb/cmd/nop.rb', line 59

def execute(*opts)
  #nop
end

#irbObject



55
56
57
# File 'lib/irb/cmd/nop.rb', line 55

def irb
  @irb_context.irb
end