aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/serializers/json.rb
blob: 9efd7c5f6901665cf051206d07e3cab82c3fda4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActiveModel
  module Serializers
    module JSON
      extend ActiveSupport::Concern
      include ActiveModel::Serializable::JSON

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