module ETL module Generator class SurrogateKeyGenerator < Generator def next @surrogate_key ||= 0 @surrogate_key += 1 end end end end