Sha256: 4b106383e0036271a3a8fa25817265cc4326cac7daee2db3a493289e0edcc013

Contents?: true

Size: 1.02 KB

Versions: 7

Compression:

Stored size: 1.02 KB

Contents

module TablePrint
  module Printable
    # Sniff the data class for non-standard methods to use as a baseline for display
    def self.default_display_methods(target)
      if target.class.respond_to? :columns
        if target.class.columns.first.respond_to? :name

          # eg ActiveRecord
          return target.class.columns.collect(&:name)
        else

          # eg Sequel
          return target.class.columns
        end
      end

      # eg mongoid
      return target.fields.keys if target.respond_to? :fields and target.fields.is_a? Hash

      return target.keys if target.is_a? Hash
      return target.members.collect(&:to_sym) if target.is_a? Struct

      methods = []
      target.methods.each do |method_name|
        method = target.method(method_name)

        if method.owner == target.class
          if method.arity == 0 #
            methods << method_name.to_s
          end
        end
      end

      methods.delete_if { |m| m[-1].chr == "!" } # don't use dangerous methods
      methods
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
table_print-1.5.7 lib/table_print/printable.rb
table_print-1.5.6 lib/table_print/printable.rb
table_print-1.5.5 lib/table_print/printable.rb
table_print-1.5.4 lib/table_print/printable.rb
table_print-1.5.3 lib/table_print/printable.rb
table_print-1.5.2 lib/table_print/printable.rb
table_print-1.5.1 lib/table_print/printable.rb