
Set attributes individually to allow for seeding of protected attributes
Reported by Michael Bleigh | April 21st, 2008 @ 12:44 PM
As recommended by Hendrik Mans. Here's the fix:
def plant!
record = get
@data.each do |k, v|
record.send("#{k}=", v)
end
record.save!
puts " - #{@model_class} #{condition_hash.inspect}"
record
end
Comments and changes to this ticket
-
Michael Bleigh April 21st, 2008 @ 12:45 PM
- State changed from new to resolved
(from [373819b161072886f7fb3bba167ae4a84b856f1e]) Implementing individual method calling to allow for protected attributes to be set as recommended by Hendrik Mans [#3 state:resolved]
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »
An attempt to simplify the usage of seed data in Rails applications through a dead simple API.