aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/serialization.rb
blob: 439302c63280f6bbf55cee6b2347c8fecce8c63f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module ActiveModel
  module Serialization
    extend ActiveSupport::Concern
    include ActiveModel::Serializable

    included do
      ActiveSupport::Deprecation.warn "ActiveModel::Serialization is deprecated in favor of ActiveModel::Serializable"
    end
  end
end