summaryrefslogtreecommitdiff
path: root/lib/csv/input_record_separator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csv/input_record_separator.rb')
-rw-r--r--lib/csv/input_record_separator.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/csv/input_record_separator.rb b/lib/csv/input_record_separator.rb
deleted file mode 100644
index bbf13479f7..0000000000
--- a/lib/csv/input_record_separator.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-require "English"
-require "stringio"
-
-class CSV
- module InputRecordSeparator
- class << self
- is_input_record_separator_deprecated = false
- verbose, $VERBOSE = $VERBOSE, true
- stderr, $stderr = $stderr, StringIO.new
- input_record_separator = $INPUT_RECORD_SEPARATOR
- begin
- $INPUT_RECORD_SEPARATOR = "\r\n"
- is_input_record_separator_deprecated = (not $stderr.string.empty?)
- ensure
- $INPUT_RECORD_SEPARATOR = input_record_separator
- $stderr = stderr
- $VERBOSE = verbose
- end
-
- if is_input_record_separator_deprecated
- def value
- "\n"
- end
- else
- def value
- $INPUT_RECORD_SEPARATOR
- end
- end
- end
- end
-end