Class: Console::Output::Wrapper

Inherits:
Object
  • Object
show all
Defined in:
lib/console/output/wrapper.rb

Direct Known Subclasses

Sensitive

Instance Method Summary collapse

Constructor Details

#initialize(delegate, **options) ⇒ Wrapper

Returns a new instance of Wrapper.



9
10
11
# File 'lib/console/output/wrapper.rb', line 9

def initialize(delegate, **options)
	@delegate = delegate
end

Instance Method Details

#callObject



17
18
19
# File 'lib/console/output/wrapper.rb', line 17

def call(...)
	@delegate.call(...)
end

#verbose!(value = true) ⇒ Object



13
14
15
# File 'lib/console/output/wrapper.rb', line 13

def verbose!(value = true)
	@delegate.verbose!(value)
end