lib/pivot_table.rb in pivot_table-0.1.4 vs lib/pivot_table.rb in pivot_table-0.2.0

- old
+ new

@@ -1,10 +1,11 @@ $: << File.dirname(__FILE__) -require "pivot_table/grid" -require "pivot_table/cell_collection" -require "pivot_table/column" -require "pivot_table/row" +require 'pivot_table/configuration' +require 'pivot_table/grid' +require 'pivot_table/cell_collection' +require 'pivot_table/column' +require 'pivot_table/row' module PivotTable - VERSION = "0.1.4" + VERSION = '0.2.0' end