lib/active_groonga.rb in activegroonga-0.0.6 vs lib/active_groonga.rb in activegroonga-0.0.7

- old
+ new

@@ -26,11 +26,11 @@ end require 'groonga' module ActiveGroonga def self.load_all! - [Base] + [Base, Column] end autoload :VERSION, 'active_groonga/version' autoload :ActiveGroongaError, 'active_groonga/base' @@ -43,9 +43,10 @@ autoload :Base, 'active_groonga/base' autoload :Batches, 'active_groonga/batches' autoload :Calculations, 'active_groonga/calculations' autoload :Callbacks, 'active_groonga/callbacks' autoload :Column, 'active_groonga/column' + autoload :IdColumn, 'active_groonga/column' autoload :Dirty, 'active_groonga/dirty' autoload :DynamicRecordExpressionBuilder, 'active_groonga/dynamic_record_expression_builder' autoload :Migration, 'active_groonga/migration' autoload :Migrator, 'active_groonga/migration'