mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
b7b4119147
Fixes a rare issue with load order when using PT outside of rails.
13 lines
313 B
Ruby
13 lines
313 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PaperTrail
|
|
# Functionality for `PaperTrail::VersionAssociation`. Exists in a module
|
|
# for the same reasons outlined in version_concern.rb.
|
|
module VersionAssociationConcern
|
|
extend ::ActiveSupport::Concern
|
|
|
|
included do
|
|
belongs_to :version
|
|
end
|
|
end
|
|
end
|