Привет, друг. Думаю, нет проблем с гемом safe_attributes.
Radcheck.new
x = Radcheck.new
x.send(:write_attribute, :attribute, 'aa')
#read_attribute does not requires any value
#x.send(:read_attribute, :attribute, 'aa')
x.send(:read_attribute, :attribute)
x.save
Вы также можете вызвать real_attribute, write_attribute непосредственно для активного объекта записи.
Radcheck.new
x = Radcheck.new
x.write_attribute(:attribute, 'aa')
x.read_attribute(:attribute)
x.save
Посетите безопасные атрибуты
Также убедитесь в следующем в вашей модели.
class Radcheck < ActiveRecord::Base
bad_attribute_names :attribute
end