Class: Commander::HelpFormatter::Context

Inherits:
Object
  • Object
show all
Defined in:
lib/commander/help_formatters.rb

Direct Known Subclasses

ProgramContext

Instance Method Summary collapse

Constructor Details

#initialize(target) ⇒ Context

Returns a new instance of Context.



10
11
12
# File 'lib/commander/help_formatters.rb', line 10

def initialize(target)
  @target = target
end

Instance Method Details

#decorate_binding(_bind) ⇒ Object

No-op, override in subclasses.



21
22
# File 'lib/commander/help_formatters.rb', line 21

def decorate_binding(_bind)
end

#get_bindingObject



14
15
16
17
18
# File 'lib/commander/help_formatters.rb', line 14

def get_binding
  @target.instance_eval { binding }.tap do |bind|
    decorate_binding(bind)
  end
end