We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c3f9b7 commit c234bc2Copy full SHA for c234bc2
lib/lightio/library/io.rb
@@ -152,6 +152,11 @@ def puts(*obj)
152
end
153
154
155
+ def flush
156
+ @obj.flush
157
+ self
158
+ end
159
+
160
def close(*args)
161
# close watcher before io closed
162
io_watcher.close
@@ -217,6 +222,11 @@ def seek(*args)
217
222
@obj.seek(*args)
218
223
219
224
225
+ def binmode
226
+ @obj.binmode
227
228
229
220
230
prepend IOMethods
221
231
232
0 commit comments