Skip to content

Commit

Permalink
Merge pull request #234 from pabloh/delete_windows_CRLF_line_terminators
Browse files Browse the repository at this point in the history
Replace CRLF line terminator with unix line terminators
  • Loading branch information
stevendaniels committed Jul 8, 2015
2 parents c4fde4c + abd6b50 commit 4adca5a
Show file tree
Hide file tree
Showing 2 changed files with 2,102 additions and 2,102 deletions.
22 changes: 11 additions & 11 deletions test/all_ss.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
require 'roo'
Dir.glob("test/files/*.ods").each do |fn|
begin
oo = Roo::OpenOffice.new fn
print File.basename(fn) + " "
puts oo.officeversion
rescue Zip::ZipError, Errno::ENOENT => e
# file is not a real .ods spreadsheet file
puts e.message
end
end
require 'roo'
Dir.glob("test/files/*.ods").each do |fn|
begin
oo = Roo::OpenOffice.new fn
print File.basename(fn) + " "
puts oo.officeversion
rescue Zip::ZipError, Errno::ENOENT => e
# file is not a real .ods spreadsheet file
puts e.message
end
end

0 comments on commit 4adca5a

Please sign in to comment.