lib/console/output/wrapper.rb in console-1.28.1 vs lib/console/output/wrapper.rb in console-1.29.0
- old
+ new
@@ -8,9 +8,15 @@
class Wrapper
def initialize(delegate, **options)
@delegate = delegate
end
+ attr :delegate
+
+ def last_output
+ @delegate.last_output
+ end
+
def verbose!(value = true)
@delegate.verbose!(value)
end
def call(...)