Records can be modified and removed using ActiveRecord methods:
article.update(title: 'Updated')
article.destroy
Make sure validations still pass during updates. Use update_attributes for older versions of Rails.
update_attributes