mirror of
https://github.com/tailix/libkernaux.git
synced 2025-03-31 17:25:22 -04:00
20 lines
364 B
Ruby
20 lines
364 B
Ruby
# frozen_string_literal: true
|
|
|
|
# rubocop:disable Style/Documentation
|
|
begin; end
|
|
|
|
module KernAux
|
|
# @!scope class
|
|
|
|
##
|
|
# @!method cmdline(str)
|
|
# Parse command line.
|
|
#
|
|
# @param str [String] command line string
|
|
# @return [Array<String>] command line arguments
|
|
#
|
|
# @raise [CmdlineError] syntax is invalid
|
|
##
|
|
end
|
|
|
|
# rubocop:enable Style/Documentation
|