Skip to content

Commit

Permalink
Merge branch 'master' into issue_389
Browse files Browse the repository at this point in the history
  • Loading branch information
Mifrill committed Jun 5, 2021
2 parents d212720 + 709464c commit 158d767
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ rvm:
- 2.5
- 2.6
- 2.7
- 3.0
- ruby-head
- jruby-9.1.6.0
env:
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ group :test do
gem 'simplecov', '>= 0.9.0', require: false
gem 'coveralls', require: false
gem "minitest-reporters"
gem 'webrick' if RUBY_VERSION >= '3.0.0'
end

group :local_development do
Expand Down
5 changes: 5 additions & 0 deletions lib/roo/excelx.rb
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,11 @@ def process_zipfile_entries(entries)
entries.each do |entry|
path =
case entry.name.downcase
when /richdata/
# FIXME: Ignore richData as parsing is not implemented yet and can cause
# Zip::DestinationFileExistsError when including a second "styles.xml" entry
# see http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2
nil
when /sharedstrings.xml$/
"#{@tmpdir}/roo_sharedStrings.xml"
when /styles.xml$/
Expand Down

0 comments on commit 158d767

Please sign in to comment.