File: all_ss.rb

package info (click to toggle)
ruby-roo 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,216 kB
  • sloc: ruby: 6,529; xml: 88; makefile: 6
file content (12 lines) | stat: -rw-r--r-- 276 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
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