class Hirb::Helpers::ObjectTable
Public Class Methods
render(rows, options ={})
click to toggle source
Rows are any ruby objects. Takes same options as Hirb::Helpers::Table.render
except as noted below.
Options:¶ ↑
- :fields
-
Methods of the object to represent as columns. Defaults to [:to_s].
Calls superclass method
Hirb::Helpers::Table::render
# File lib/hirb/helpers/object_table.rb, line 6 def self.render(rows, options ={}) options[:fields] ||= [:to_s] options[:headers] ||= {:to_s=>'value'} if options[:fields] == [:to_s] item_hashes = options[:fields].empty? ? [] : Array(rows).inject([]) {|t,item| t << options[:fields].inject({}) {|h,f| h[f] = item.__send__(f); h} } super(item_hashes, options) end