class Vorpal::Driver::ArelQueryMethods

Public Class Methods

new(mapper) click to toggle source
# File lib/vorpal/driver/postgresql.rb, line 156
def initialize(mapper)
  @mapper = mapper
end

Public Instance Methods

extended(descendant) click to toggle source
Calls superclass method
# File lib/vorpal/driver/postgresql.rb, line 160
def extended(descendant)
  super
  descendant.extend(Methods)
  descendant.vorpal_aggregate_mapper = @mapper
end