module Roo

Constants

CLASS_FOR_EXTENSION
VERSION

Public Class Methods

const_missing(const_name) click to toggle source
Calls superclass method
# File lib/roo.rb, line 16
def self.const_missing(const_name)
  case const_name
  when :Excel
    raise "Excel support has been extracted to roo-xls due to its dependency on the GPL'd spreadsheet gem. Install roo-xls to use Roo::Excel."
  when :Excel2003XML
    raise "Excel SpreadsheetML support has been extracted to roo-xls. Install roo-xls to use Roo::Excel2003XML."
  when :Google
    raise "Google support has been extracted to roo-google. Install roo-google to use Roo::Google."
  else
    super
  end
end