module ActiveModel::Attributes

def freeze

def freeze
  @attributes = @attributes.clone.freeze unless frozen?
  super
end