lib/nanoc/cli/cleaning_stream.rb in nanoc-4.0.0a1 vs lib/nanoc/cli/cleaning_stream.rb in nanoc-4.0.0a2
- old
+ new
@@ -117,9 +117,24 @@
# @see IO.winsize=
def winsize=(arg)
@stream.winsize = (arg)
end
+ # @see IO.sync
+ def sync
+ @stream.sync
+ end
+
+ # @see IO.sync=
+ def sync=(arg)
+ @stream.sync = arg
+ end
+
+ # @see IO.sync=
+ def external_encoding
+ @stream.external_encoding
+ end
+
protected
def _nanoc_clean(s)
@stream_cleaners.reduce(s) { |a, e| e.clean(a) }
end