aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_text/attribute.rb
blob: 577adde83a611017fcc162606525c236f6be3479 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveText
  module Attribute
    extend ActiveSupport::Concern

    class_methods do
      def active_text_attribute(attribute_name)
        serialize(attribute_name, ActiveText::Content)
      end
    end
  end
end