Skip to content

Commit

Permalink
[ruby/csv] Organize files in doc/ (ruby#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
BurdetteLamar authored and nobu committed Jul 19, 2020
1 parent 920a168 commit d9eff30
Show file tree
Hide file tree
Showing 23 changed files with 30 additions and 30 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
60 changes: 30 additions & 30 deletions lib/csv.rb
Original file line number Diff line number Diff line change
Expand Up @@ -251,55 +251,55 @@
#
# === Options for Parsing
#
# :include: ../doc/col_sep.rdoc
# :include: ../doc/options/common/col_sep.rdoc
#
# :include: ../doc/row_sep.rdoc
# :include: ../doc/options/common/row_sep.rdoc
#
# :include: ../doc/quote_char.rdoc
# :include: ../doc/options/common/quote_char.rdoc
#
# :include: ../doc/field_size_limit.rdoc
# :include: ../doc/options/parsing/field_size_limit.rdoc
#
# :include: ../doc/converters.rdoc
# :include: ../doc/options/parsing/converters.rdoc
#
# :include: ../doc/unconverted_fields.rdoc
# :include: ../doc/options/parsing/unconverted_fields.rdoc
#
# :include: ../doc/headers.rdoc
# :include: ../doc/options/parsing/headers.rdoc
#
# :include: ../doc/return_headers.rdoc
# :include: ../doc/options/parsing/return_headers.rdoc
#
# :include: ../doc/header_converters.rdoc
# :include: ../doc/options/parsing/header_converters.rdoc
#
# :include: ../doc/skip_blanks.rdoc
# :include: ../doc/options/parsing/skip_blanks.rdoc
#
# :include: ../doc/skip_lines.rdoc
# :include: ../doc/options/parsing/skip_lines.rdoc
#
# :include: ../doc/liberal_parsing.rdoc
# :include: ../doc/options/parsing/strip.rdoc
#
# :include: ../doc/nil_value.rdoc
# :include: ../doc/options/parsing/liberal_parsing.rdoc
#
# :include: ../doc/empty_value.rdoc
# :include: ../doc/options/parsing/nil_value.rdoc
#
# === Options for Generating
# :include: ../doc/options/parsing/empty_value.rdoc
#
# :include: ../doc/col_sep.rdoc
# === Options for Generating
#
# :include: ../doc/row_sep.rdoc
# :include: ../doc/options/common/col_sep.rdoc
#
# :include: ../doc/quote_char.rdoc
# :include: ../doc/options/common/row_sep.rdoc
#
# :include: ../doc/write_headers.rdoc
# :include: ../doc/options/common/quote_char.rdoc
#
# :include: ../doc/force_quotes.rdoc
# :include: ../doc/options/generating/write_headers.rdoc
#
# :include: ../doc/quote_empty.rdoc
# :include: ../doc/options/generating/force_quotes.rdoc
#
# :include: ../doc/write_converters.rdoc
# :include: ../doc/options/generating/quote_empty.rdoc
#
# :include: ../doc/write_nil_value.rdoc
# :include: ../doc/options/generating/write_converters.rdoc
#
# :include: ../doc/write_empty_value.rdoc
# :include: ../doc/options/generating/write_nil_value.rdoc
#
# :include: ../doc/strip.rdoc
# :include: ../doc/options/generating/write_empty_value.rdoc
#
# == CSV with headers
#
Expand Down Expand Up @@ -834,7 +834,7 @@ def filter(input=nil, output=nil, **options)
# Returns an integer, or, if there were no rows, +nil+.
#
# * Argument +path+, if given, must be the path to a file.
# :include: ../doc/argument_io.rdoc
# :include: ../doc/arguments/io.rdoc
# * Argument +mode+, if given, must be a \File mode
# See {Open Mode}[IO.html#method-c-new-label-Open+Mode].
# * Arguments <tt>**options</tt> must be keyword options.
Expand Down Expand Up @@ -1069,7 +1069,7 @@ def generate_line(row, **options)
# :replace => string # replacement string ("?" or "\uFFFD" if not specified)
#
# * Argument +path+, if given, must be the path to a file.
# :include: ../doc/argument_io.rdoc
# :include: ../doc/arguments/io.rdoc
# * Argument +mode+, if given, must be a \File mode
# See {Open Mode}[IO.html#method-c-new-label-Open+Mode].
# * Arguments <tt>**options</tt> must be keyword options.
Expand Down Expand Up @@ -1174,7 +1174,7 @@ def open(filename, mode="r", **options)
#
# - Argument +string+ should be a \String object;
# it will be put into a new StringIO object positioned at the beginning.
# :include: ../doc/argument_io.rdoc
# :include: ../doc/arguments/io.rdoc
# - Argument +options+: see {Options for Parsing}[#class-CSV-label-Options+for+Parsing]
#
# ====== Without Option +headers+
Expand Down Expand Up @@ -1300,7 +1300,7 @@ def parse(str, **options, &block)
#
# - Argument +string+ should be a \String object;
# it will be put into a new StringIO object positioned at the beginning.
# :include: ../doc/argument_io.rdoc
# :include: ../doc/arguments/io.rdoc
# - Argument +options+: see {Options for Parsing}[#class-CSV-label-Options+for+Parsing]
#
# ====== Without Option +headers+
Expand Down Expand Up @@ -1404,7 +1404,7 @@ def table(path, **options)
#
# - Argument +string+ should be a \String object;
# it will be put into a new StringIO object positioned at the beginning.
# :include: ../doc/argument_io.rdoc
# :include: ../doc/arguments/io.rdoc
# - Argument +options+: See:
# * {Options for Parsing}[#class-CSV-label-Options+for+Parsing]
# * {Options for Generating}[#class-CSV-label-Options+for+Generating]
Expand Down

0 comments on commit d9eff30

Please sign in to comment.