21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# File 'lib/cli/ui/stdout_router.rb', line 21
def write(*args)
strs = args.map do |obj|
str = obj.to_s
if auto_frame_inset?
str = str.dup str = str.to_s.force_encoding(Encoding::UTF_8)
apply_line_prefix(str, CLI::UI::Frame.prefix)
else
@pending_newline = false
str
end
end
if (hook = Thread.current[:cliui_output_hook])
return 0 if hook.call(strs.join, @name) == false
end
ret = T.unsafe(@stream).write_without_cli_ui(*prepend_id(@stream, strs))
if (dup = StdoutRouter.duplicate_output_to)
begin
T.unsafe(dup).write(*prepend_id(dup, strs))
rescue IOError
end
end
ret
end
|