mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
20 lines
293 B
Ruby
20 lines
293 B
Ruby
# frozen_string_literal: true
|
|
|
|
# rubocop:disable Lint/EmptyClass
|
|
|
|
module KernAux
|
|
##
|
|
# File simulator.
|
|
#
|
|
class File
|
|
##
|
|
# @!method initialize(out)
|
|
# Create a file.
|
|
#
|
|
# @param out [Proc] writing method
|
|
|
|
# @!parse [ruby]
|
|
end
|
|
end
|
|
|
|
# rubocop:enable Lint/EmptyClass
|