libkernaux/pkgs/ruby/lib/kernaux/file.rb

23 lines
349 B
Ruby

# frozen_string_literal: true
# rubocop:disable Lint/EmptyClass
if defined? KernAux::File
module KernAux
##
# File simulator.
#
class File
##
# @!method initialize(out)
# Create a file.
#
# @param out [Proc] writing method
# @!parse [ruby]
end
end
end
# rubocop:enable Lint/EmptyClass