1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/action_text/serialization.rb
Alberto Almagro 34f2e9492b Add frozen_string_literal: true
Adds frozen_string_literal: true comment on top of all currently existing files
2018-10-08 23:44:25 +02:00

34 lines
545 B
Ruby

# frozen_string_literal: true
module ActionText
module Serialization
extend ActiveSupport::Concern
class_methods do
def load(content)
new(content) if content
end
def dump(content)
case content
when nil
nil
when self
content.to_html
else
new(content).to_html
end
end
end
# Marshal compatibility
class_methods do
alias_method :_load, :load
end
def _dump(*)
self.class.dump(self)
end
end
end