I'd like to delete some records before saving them.  I ran this
experiment:

before_save :prune_lab_datas

  def prune_lab_datas
    lab_datas.each do |lab_data|
      lab_data.destroy
    end
    raise lab_datas.to_yaml
  end

But nothing seems to be deleted in the hash:

---
- &id001 !ruby/object:LabData
  attributes:
    created_at: 2010-03-21 22:16:06
    unit_id: "3"
    lab_id: "81"
    updated_at: 2010-03-21 22:16:06
    id: "184"
    lab_desc_id: "6"
    value: "29"
  attributes_cache: {}

  changed_attributes: {}

  errors: !ruby/object:ActiveRecord::Errors
    base: *id001
    errors: {}

And if I remove the "raise", the controller throws a "can't modify
frozen hash" error.

Any idea how I can remove records from the hash prior to saving?

TIA,
Craig

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to