1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00
libkernaux/bindings/ruby/lib/kernaux/io.rb

23 lines
352 B
Ruby
Raw Normal View History

2022-06-07 14:37:34 -04:00
# frozen_string_literal: true
# rubocop:disable Lint/EmptyClass
2022-06-14 08:03:17 -04:00
if KernAux::Version.with_io?
2022-06-07 15:13:01 -04:00
module KernAux
2022-06-07 14:37:34 -04:00
##
2022-06-07 15:13:01 -04:00
# File simulator.
2022-06-07 14:37:34 -04:00
#
2022-06-07 15:13:01 -04:00
class File
##
# @!method initialize(out)
# Create a file.
#
# @param out [Proc] writing method
2022-06-07 14:37:34 -04:00
2022-06-07 15:13:01 -04:00
# @!parse [ruby]
end
2022-06-07 14:37:34 -04:00
end
end
# rubocop:enable Lint/EmptyClass