Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove no longer required refinements #250

Merged
merged 1 commit into from
Jun 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions lib/csv.rb
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,11 @@

require_relative "csv/fields_converter"
require_relative "csv/input_record_separator"
require_relative "csv/match_p"
require_relative "csv/parser"
require_relative "csv/row"
require_relative "csv/table"
require_relative "csv/writer"

using CSV::MatchP if CSV.const_defined?(:MatchP)

# == \CSV
#
# === In a Hurry?
Expand Down
18 changes: 0 additions & 18 deletions lib/csv/delete_suffix.rb

This file was deleted.

20 changes: 0 additions & 20 deletions lib/csv/match_p.rb

This file was deleted.

5 changes: 0 additions & 5 deletions lib/csv/parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,10 @@

require "strscan"

require_relative "delete_suffix"
require_relative "input_record_separator"
require_relative "match_p"
require_relative "row"
require_relative "table"

using CSV::DeleteSuffix if CSV.const_defined?(:DeleteSuffix)
using CSV::MatchP if CSV.const_defined?(:MatchP)

class CSV
# Note: Don't use this class directly. This is an internal class.
class Parser
Expand Down
3 changes: 0 additions & 3 deletions lib/csv/writer.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# frozen_string_literal: true

require_relative "input_record_separator"
require_relative "match_p"
require_relative "row"

using CSV::MatchP if CSV.const_defined?(:MatchP)

class CSV
# Note: Don't use this class directly. This is an internal class.
class Writer
Expand Down