This is the error I get when I try to update a non-image attribute of a record on my Vendor model (e.g. the owner):
NoMethodError at /admin/vendor/12/edit
Message undefined method `thumb_image_changed?' for #<Vendor:0x007ff47d097468>
File /.rvm/gems/ruby-1.9.3-p194@my-app/gems/activemodel-3.2.8/lib/active_model/attribute_methods.rb
Line 407
So, this error is generated even though I am not changing the image.
This is what my Vendor model looks like:
class Vendor < ActiveRecord::Base
attr_accessible :name, :description, :banner_image, :logo_image, :intro_text, :thumb_image, :category_ids, :product_ids, :user_id, :remove_banner_image, :banner_image_cache, :remove_logo_image, :logo_image_cache
mount_uploader :banner_image, ImageUploader
mount_uploader :logo_image, ImageUploader
mount_uploader :thumb_image, ImageUploader
has_many :products, :dependent => :destroy
has_many :categories, :through => :products
belongs_to :owner, :class_name => "User",
:foreign_key => "user_id"
end
I think I get a similar error when I try to update just one of the images of a record (and not all 3).
What could be causing this and how do I fix it?
Thanks.
Edit 1:
The Vendor#update controller looks like a normally scaffolded update action:
def update
@vendor = Vendor.find(params[:id])
respond_to do |format|
if @vendor.update_attributes(params[:vendor])
format.html { redirect_to @vendor, notice: 'Vendor was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @vendor.errors, status: :unprocessable_entity }
end
end
end
Here are the params that generate this request:
Started PUT "/vendors/12" for 127.0.0.1 at 2013-01-06 16:51:28 -0500
Processing by VendorsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"3bl5Q=", "vendor"=>{"name"=>"Die", "intro_text"=>"Toppa top jeans", "description"=>"The best jeans you can get your legs in."}, "commit"=>"Update Vendor", "id"=>"12"}
Category Load (13.0ms) SELECT "categories".* FROM "categories" LIMIT 6
Vendor Load (0.1ms) SELECT "vendors".* FROM "vendors" WHERE "vendors"."id" = ? LIMIT 1 [["id", "12"]]
(0.1ms) begin transaction
(0.1ms) rollback transaction
Completed 500 Internal Server Error in 51ms
The attribute I was updating in this case is the name attribute.
Also, for what it's worth, here is a full stack trace of this request.
thumb_image? Because it really looks like ActiveModel::Dirty (api.rubyonrails.org/classes/ActiveModel/Dirty.html) is trying to run the..._changed?method on an existing column – pjam Jan 6 at 23:45schema.rband am not seeing it. – marcamillion Jan 6 at 23:50