class Enzymator::Aggregations::Base

Public Class Methods

new(config = {}) click to toggle source
# File lib/enzymator/aggregations/base.rb, line 5
def initialize(config = {})
  @config = Transformations::Config.new(config)
end

Public Instance Methods

run_on(object) click to toggle source
# File lib/enzymator/aggregations/base.rb, line 9
def run_on(object)
  @transformation.run_on(object)
end