edjames/pivot_table

View on GitHub
lib/pivot_table/row.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PivotTable
  class Row
    include CellCollection

    def column_data column_header
      find_data column_header
    end
  end
end