类 SyntaxSuggest::MiniStringIO
类似于 StringIO
,但 API 减少,并且不需要引入该类。
属性
isatty[R]
string[R]
公共类方法
new(isatty: $stderr.isatty) 点击切换源代码
# File lib/syntax_suggest/core_ext.rb, line 11 def initialize(isatty: $stderr.isatty) @string = +"" @isatty = isatty end
公共实例方法
puts(value = $/, **) 点击切换源代码
# File lib/syntax_suggest/core_ext.rb, line 17 def puts(value = $/, **) @string << value end