Skip to content

Commit 89e5d43

Browse files
authoredSep 3, 2020
Ruby 2.7 compatibility fixes (#93)
1 parent 2d727b5 commit 89e5d43

File tree

4 files changed

+30
-12
lines changed

4 files changed

+30
-12
lines changed
 

‎.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: ruby
22
rvm:
33
- 2.3.0
4+
- 2.7
45
addons:
56
code_climate:
67
repo_token: bcecbf1b229a2ddd666a2c3830f26a0113fd56ae1586d30d2d3fb1af837bf0e4

‎Gemfile

-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,3 @@ source 'https://rubygems.org'
22

33
# Specify your gem's dependencies in csv-importer.gemspec
44
gemspec
5-
6-
gem 'rspec', '~> 3.3.0'
7-
gem 'guard-rspec'
8-
gem 'activemodel'
9-
gem 'simplecov', require: nil
10-
gem "codeclimate-test-reporter", require: nil

‎csv-importer.gemspec

+6-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ Gem::Specification.new do |spec|
2020

2121
spec.add_dependency "virtus"
2222

23-
spec.add_development_dependency "bundler", "~> 1.8"
24-
spec.add_development_dependency "rake", "~> 10.0"
23+
spec.add_development_dependency "rspec", "~> 3.3.0"
24+
spec.add_development_dependency "rake"
25+
spec.add_development_dependency "guard-rspec"
26+
spec.add_development_dependency "activemodel", "~> 5"
27+
spec.add_development_dependency "simplecov"
28+
spec.add_development_dependency "codeclimate-test-reporter"
2529
end

‎lib/csv_importer/csv_reader.rb

+23-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@ def csv_rows
1414
@csv_rows ||= begin
1515
sane_content = sanitize_content(read_content)
1616
separator = detect_separator(sane_content)
17-
cells = CSV.parse(sane_content, col_sep: separator, quote_char: quote_char, skip_blanks: true, encoding: encoding)
18-
sanitize_cells(cells)
17+
cells = CSV.parse(
18+
sane_content,
19+
col_sep: separator, quote_char: quote_char, skip_blanks: true,
20+
external_encoding: source_encoding
21+
)
22+
sanitize_cells(encode_cells(cells))
1923
end
2024
end
2125

@@ -44,9 +48,8 @@ def read_content
4448
end
4549

4650
def sanitize_content(csv_content)
47-
internal_encoding = encoding.split(':').last
4851
csv_content
49-
.encode(Encoding.find(internal_encoding), {invalid: :replace, undef: :replace, replace: ''}) # Remove invalid byte sequences
52+
.encode(Encoding.find(source_encoding), invalid: :replace, undef: :replace, replace: '') # Remove invalid byte sequences
5053
.gsub(/\r\r?\n?/, "\n") # Replaces windows line separators with "\n"
5154
end
5255

@@ -75,5 +78,21 @@ def sanitize_cells(rows)
7578
end
7679
end
7780
end
81+
82+
def encode_cells(rows)
83+
rows.map do |cells|
84+
cells.map do |cell|
85+
cell ? cell.encode(target_encoding) : ""
86+
end
87+
end
88+
end
89+
90+
def source_encoding
91+
encoding.split(':').first || 'UTF-8'
92+
end
93+
94+
def target_encoding
95+
encoding.split(':').last || 'UTF-8'
96+
end
7897
end
7998
end

0 commit comments

Comments
 (0)
Please sign in to comment.