summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/csv.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/csv.rb b/lib/csv.rb
index 5be4b0d347..58953a2bf9 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -2206,6 +2206,11 @@ class CSV
init_converters(options, :header_converters)
end
+ # Stores the pattern of comments to skip from the provided options.
+ #
+ # The pattern must respond to +.match+, else ArgumentError is raised.
+ #
+ # See also CSV.new
def init_comments(options)
@skip_lines = options.delete(:skip_lines)
if @skip_lines and not @skip_lines.respond_to?(:match)