Class: Commander::HelpFormatter::Context
- Defined in:
- lib/commander/help_formatters.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#decorate_binding(_bind) ⇒ Object
No-op, override in subclasses.
- #get_binding ⇒ Object
-
#initialize(target) ⇒ Context
constructor
A new instance of Context.
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_binding ⇒ Object
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 |