mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
11 lines
224 B
Ruby
11 lines
224 B
Ruby
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
|