Skip to content

Commit bc11345

Browse files
authored
Drop :nodoc: options from core classes that contains methods with docs (#322)
I found some methods are not included in RDoc output, and the `:nodoc:` option should be the reason. It seems like there is no reason to opt-out the methods. 7b79bec added the option, but still not clear why we needed it.
1 parent 7b8c3ca commit bc11345

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/csv/core_ext/array.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Array # :nodoc:
1+
class Array
22
# Equivalent to CSV::generate_line(self, options)
33
#
44
# ["CSV", "data"].to_csv

lib/csv/core_ext/string.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class String # :nodoc:
1+
class String
22
# Equivalent to CSV::parse_line(self, options)
33
#
44
# "CSV,data".parse_csv

0 commit comments

Comments
 (0)