Module: Bj::Table::InstanceMethods

Defined in:
lib/bj/table.rb

Instance Method Summary collapse

Instance Method Details

#to_hashObject



86
87
88
89
90
# File 'lib/bj/table.rb', line 86

def to_hash
  oh = OrderedHash.new
  self.class.content_column_names.each{|c| oh[c] = self[c]}
  oh
end