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

23 lines
349 B
Ruby
Raw Normal View History

2022-06-07 14:37:34 -04:00
# frozen_string_literal: true
# rubocop:disable Lint/EmptyClass
2022-06-07 15:13:01 -04:00
if defined? KernAux::File
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