Есть модель пользователя.
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
has_many :posts, dependent: :destroy
has_many :comments, dependent: :destroy
has_attached_file :avatar, styles: { medium: "300x300>", thumb: "100x100>" },
default_url: "/images/:style/missing.png"
validates_attachment_content_type :avatar, content_type: /\Aimage\/.*\Z/
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
end
Код во вьюхе:
<p>
<strong>Avatar:</strong> <br>
<%= image_tag @user.avatar.url(:medium) %>
</p>
Делал все по документации
https://github.com/thoughtbot/paperclip
Если у пользователя нет аватарки, то она не отображается. В папке /assets/images имеется изображение missing.png, но на выходе получаю
Как решить проблему?