Skip to content

Commit

Permalink
Fixes dep on activesupport
Browse files Browse the repository at this point in the history
  • Loading branch information
weilandia committed Jul 12, 2024
1 parent aef2fcd commit 1cd4f02
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/simple_text_extract/extract.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def xlsx_extract
text << "# Sheet Name: #{name}"

spreadsheet.sheet(name)&.each_row_streaming do |row|
text << row.filter(&:present?).join(" ")
text << row.map(&:to_s).join(" ")
end
end

Expand Down

0 comments on commit 1cd4f02

Please sign in to comment.