File: parser.rb

package info (click to toggle)
ruby-spreadsheet 1.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,964 kB
  • sloc: ruby: 6,943; makefile: 10
file content (11 lines) | stat: -rw-r--r-- 171 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
require 'parseexcel'

module Spreadsheet
  module ParseExcel # :nodoc: all
    class Parser
      def parse path
        Spreadsheet.open path
      end
    end
  end
end