# File lib/extlib/inflection.rb, line 76
      def tableize(class_name)
        words = class_name.to_const_path.tr('/', '_').split('_')
        words[-1] = pluralize(words[-1])
        words.join('_')
      end