You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have an error on rails 4.2 using the gem carrierwave-crop 0.1.2.
when I try to crop the image an error occurs:
NoMethodError (undefined method `crop' for #LocationShowcaseUploader::Uploader70164076328740:0x007fa0b6842a98)
my code:
classLocationShowcase < ActiveRecord::Base# other stuff..mount_uploader:image,LocationShowcaseUploader,mount_on: :image_file_namecrop_uploaded:image# other stuff..end
Maybe too late to the party but I had the same problem. Noticed had gem "carrierwave-crop" before gem "carrierwave" inside my Gemfile. Changed the order, did bundle install and the error disappeared.
Hi,
I have an error on rails 4.2 using the gem carrierwave-crop 0.1.2.
when I try to crop the image an error occurs:
NoMethodError (undefined method `crop' for #LocationShowcaseUploader::Uploader70164076328740:0x007fa0b6842a98)
my code:
The text was updated successfully, but these errors were encountered: