module Upgrow::Record

Utility mixin to help adjust Active Record Base classes according to Upgrow's conventions. It allows the use of the `Record` suffix in class naming while keeping it out of table and association names, among other adaptations.

Public Class Methods

included(base) click to toggle source

@private

# File lib/upgrow/record.rb, line 117
def self.included(base)
  base.extend(ClassMethods)
end